You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RealmObjectもしくはEmbeddedRealmObjectを継承するsub classは data classではなく、classで定義すること linklink2
data classにすると以下のようなコンパイルエラーが発生する
Details: Internal error in file lowering: java.lang.IllegalStateException: Data class 'jp.ac.jec.cm0199.androidrealmsample.Item' is not currently supported. Only normal classes can inherit from 'RealmObject' or 'EmbeddedRealmObject'.
2023-09-02 12:02:20.161 11182-11182 Choreographer jp.ac.jec.cm0199.androidrealmsample I Skipped 71 frames! The application may be doing too much work on its main thread.
Realmの内部処理は単一のスレッドで実行される。アプリ側でスレッドを変更することはできないと思う。
以下は、Realmの内部実装
refs
https://github.com/search?q=repo%3Arealm%2Frealm-kotlin%20SuspendableWriter&type=code
https://github.com/realm/realm-kotlin/blob/9138b66846fac53d60c225d1962bd951206d31bd/packages/library-base/src/commonMain/kotlin/io/realm/kotlin/internal/SuspendableWriter.kt#L48
The text was updated successfully, but these errors were encountered: