LISTENERS
Events pertaining to listeners which tor has opened.
Observers are notified with TorListeners once tor bootstraps to the network. Subsequently, if a listener is opened or closed (e.g. a configuration change), observers will be notified with the updated information.
When tor is stopped or the network disabled, observers will be notified with TorListeners whereby TorListeners.isEmpty is true (all listeners are closed or closing).
e.g. (println observers for events STATE, LISTENERS, READY)
TorState[fid=6E96…6985, daemon=On{95%}, network=Enabled]
TorState[fid=6E96…6985, daemon=On{100%}, network=Enabled]
TorListeners[fid=6E96…6985]: [
dir: []
dns: []
http: []
metrics: []
natd: []
or: []
orExt: []
socks: [
127.0.0.1:35607
]
socksUnix: []
trans: []
]
Tor[fid=6E96…6985] IS READY
TorState[fid=6E96…6985, daemon=On{100%}, network=Disabled]
TorListeners[fid=6E96…6985]: [
dir: []
dns: []
http: []
metrics: []
natd: []
or: []
orExt: []
socks: []
socksUnix: []
trans: []
]
Content copied to clipboard
See also
Functions
Link copied to clipboard
protected override fun createProtected(event: RuntimeEvent<TorListeners>, tag: String?, executor: OnEvent.Executor?, onEvent: OnEvent<TorListeners>): RuntimeEvent.Observer<TorListeners>
Link copied to clipboard
fun observer(tag: String?, executor: OnEvent.Executor?, onEvent: OnEvent<TorListeners>): RuntimeEvent.Observer<TorListeners>