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?