Android Entity Room Parcelable

0

This is a question a little more performance and curiosity.

Is it possible to use Room Entity as Parcelable?

For example, have a class that implements the User interface for table user :

@Entity(tableName = "user")
public class UserEntity implements UserInterface {

...
}

Now, is it possible to make it also implement Parcelable ? Does performance affect positively or negatively?

    
asked by Néstor 13.09.2018 в 23:08
source

0 answers