mirror of
https://github.com/corda/corda.git
synced 2025-04-25 13:29:51 +00:00
Minor: document the SMM.changes observable.
This commit is contained in:
parent
2c139ae40c
commit
119813a36d
@ -91,6 +91,10 @@ class StateMachineManager(val serviceHub: ServiceHubInternal, tokenizableService
|
|||||||
|
|
||||||
private val _changesPublisher = PublishSubject.create<Triple<ProtocolLogic<*>, AddOrRemove, Long>>()
|
private val _changesPublisher = PublishSubject.create<Triple<ProtocolLogic<*>, AddOrRemove, Long>>()
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An observable that emits triples of the changing protocol, the type of change, and a process-specific ID number
|
||||||
|
* which may change across restarts.
|
||||||
|
*/
|
||||||
val changes: Observable<Triple<ProtocolLogic<*>, AddOrRemove, Long>>
|
val changes: Observable<Triple<ProtocolLogic<*>, AddOrRemove, Long>>
|
||||||
get() = _changesPublisher
|
get() = _changesPublisher
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user