stop

@CheckReturnValue
abstract fun stop(): Completable

To be called when this manager should stop operating. This will release the com.swarovskioptik.comm.definition.SOContexts used by this manager as well as any other resources.

After calling this method, it is not safe to call any other method of this class before calling start again.

Note that it is completely safe to call this method also after there is no longer an active connection to a remote device.

Scheduler: The returned Completable will operate on the IO Scheduler.

Return

a Completable which completes when everything has been cleared up.

See also