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
모델 스트림은 새 구독자에게 마지막 모델 개정을 전달하기 위해 스트림(Stream<TModel, TId>.Instance)과 스트림 연결(Stream<TModel, TId>.Connection)에 BehaviorSubject<T> 클래스를 사용합니다. 하지만 BehaviorSubject<T> 클래스는 Subject<T> 클래스에 비해 메모리 사용량이 큽니다. 이를 개선할 방법이 있는지 조사하고 필요한 경우 가벼운 버전의 LightBehaviorSubject<T> 내부 클래스를 작성합니다.
The text was updated successfully, but these errors were encountered:
모델 스트림은 새 구독자에게 마지막 모델 개정을 전달하기 위해 스트림(
Stream<TModel, TId>.Instance
)과 스트림 연결(Stream<TModel, TId>.Connection
)에BehaviorSubject<T>
클래스를 사용합니다. 하지만BehaviorSubject<T>
클래스는Subject<T>
클래스에 비해 메모리 사용량이 큽니다. 이를 개선할 방법이 있는지 조사하고 필요한 경우 가벼운 버전의LightBehaviorSubject<T>
내부 클래스를 작성합니다.The text was updated successfully, but these errors were encountered: