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 the present API, protocol.subscribe only accepts one argument, a binder instance. In the implementation of the subscribe method, the binder has to call binder.onProtocolChange when the data has changed in the protocol. The protocol shouldn't need to know what the method is called, and should accept a callback method instead.
In the present API,
protocol.subscribe
only accepts one argument, abinder
instance. In the implementation of the subscribe method, the binder has to callbinder.onProtocolChange
when the data has changed in the protocol. The protocol shouldn't need to know what the method is called, and should accept a callback method instead.Before:
After:
The text was updated successfully, but these errors were encountered: