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
In EntitySubscription informEntityChanges and in turn transferBitsToInts is called even when there are no listeners. Seems unnecessary when i use some subscriptions just for getEntities. Or is my use case very uncommon?
In informEntityChanges if (!extra.listeners.isEmpty()) { transferBitsToInts(extra.inserted, extra.removed); extra.informEntityChanges(); }
Or maybe inserted/remoevIds.clear still need to run? in which case and else is also needed.