유니티 Unirx 구독 이벤트 간단 정리 Subscribe


유니티 Unirx 구독 이벤트 간단 정리 Subscribe

OnNext observable.Subscribe( value => Debug.Log($"OnNext: {value}"), () => Debug.Log("OnCompleted") ); OnError observable.Subscribe( value => Debug.Log($"OnNext: {value}"), error => Debug.LogError($"OnError: {error.Message}") ); OnCompleted observable.Subscribe( value => Debug.Log($"OnNext: {value}"), () => Debug.Log("OnCompleted") ); OnDisposed var subscription = observable.Subscribe( value => ..


원문링크 : 유니티 Unirx 구독 이벤트 간단 정리 Subscribe