trait SocketGroup[F[_]] extends AnyRef
Resource that provides the ability to open client and server TCP sockets that all share an underlying non-blocking channel group.
- Source
- SocketGroup.scala
- Alphabetic
- By Inheritance
- SocketGroup
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
abstract
def
client(to: InetSocketAddress, reuseAddress: Boolean = true, sendBufferSize: Int = 256 * 1024, receiveBufferSize: Int = 256 * 1024, keepAlive: Boolean = false, noDelay: Boolean = false, additionalSocketOptions: List[SocketOptionMapping[_]] = List.empty): Resource[F, Socket[F]]
Opens a connection to the specified server represented as a Socket.
Opens a connection to the specified server represented as a Socket. The connection is closed when the resource is released.
- to
address of remote server
- reuseAddress
whether address may be reused (see
java.net.StandardSocketOptions.SO_REUSEADDR)- sendBufferSize
size of send buffer (see
java.net.StandardSocketOptions.SO_SNDBUF)- receiveBufferSize
size of receive buffer (see
java.net.StandardSocketOptions.SO_RCVBUF)- keepAlive
whether keep-alive on tcp is used (see
java.net.StandardSocketOptions.SO_KEEPALIVE)- noDelay
whether tcp no-delay flag is set (see
java.net.StandardSocketOptions.TCP_NODELAY)
-
abstract
def
server(address: InetSocketAddress, reuseAddress: Boolean = true, receiveBufferSize: Int = 256 * 1024, additionalSocketOptions: List[SocketOptionMapping[_]] = List.empty): Stream[F, Resource[F, Socket[F]]]
Stream that binds to the specified address and provides a connection for, represented as a Socket, for each client that connects to the bound address.
Stream that binds to the specified address and provides a connection for, represented as a Socket, for each client that connects to the bound address.
Returns a stream of stream of sockets.
The outer stream scopes the lifetime of the server socket. When the outer stream terminates, all open connections will terminate as well. The outer stream emits an element (an inner stream) for each client connection.
Each inner stream represents an individual connection, and as such, is a stream that emits a single socket. Failures that occur in an inner stream do *NOT* cause the outer stream to fail.
- address
address to accept connections from
- reuseAddress
whether address may be reused (see
java.net.StandardSocketOptions.SO_REUSEADDR)- receiveBufferSize
size of receive buffer (see
java.net.StandardSocketOptions.SO_RCVBUF)
-
abstract
def
serverResource(address: InetSocketAddress, reuseAddress: Boolean = true, receiveBufferSize: Int = 256 * 1024, additionalSocketOptions: List[SocketOptionMapping[_]] = List.empty): Resource[F, (InetSocketAddress, Stream[F, Resource[F, Socket[F]]])]
Like server but provides the
InetSocketAddressof the bound server socket before providing accepted sockets.Like server but provides the
InetSocketAddressof the bound server socket before providing accepted sockets. The inner stream emits one socket for each client that connects to the server.
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
Deprecated Value Members
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] ) @Deprecated @deprecated
- Deprecated
(Since version ) see corresponding Javadoc for more information.