Server actor
Rocket.server
— Functionserver(port::Int)
server(address::A, port::Int) where { A <: IPAddr }
server(::Type{D}, port::Int)
server(::Type{D}, address::A, port::Int) where { A <: IPAddr }
Creation operator for the ServerActor
actor.
See also: AbstractActor
Rocket.ServerActor
— TypeServerActor{D, Address, Port}() where D
The ServerActor
sends all next!
/error!
/complete!
events to the local network listeners with specified Address
and Port
parameters via TCPSocket
.