Network Observable
Rocket.network — Functionnetwork(::Type{D}, port::Int)             where D
network(::Type{D}, address::A, port::Int) where { D, A <: IPAddr }
network(::Type{Vector{D}}, port::Int, buffer_size::Int)             where D
network(::Type{Vector{D}}, address::A, port::Int, buffer_size::Int) where { D, A <: IPAddr }Creation operator for the NetworkObservable that emits messages from the server with specified address and port arguments.
See also: NetworkObservable, subscribe!
Rocket.NetworkObservable — TypeNetworkObservable{D, Address, Port, S}()NetworkObservable listens for the messages of type D from remote server with specified Address and Port parameters.
See also: network, Subscribable