trait Socket[F[_]] extends AnyRef
Provides the ability to read/write from a TCP socket in the effect F.
- Source
- Socket.scala
- Alphabetic
- By Inheritance
- Socket
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
abstract
def
endOfInput: F[Unit]
Indicates that this channel will not read more data.
Indicates that this channel will not read more data. Causes
End-Of-Streambe signalled toavailable. This is a no-op on Node.js. -
abstract
def
endOfOutput: F[Unit]
Indicates to peer, we are done writing.
Indicates to peer, we are done writing. *
- abstract def isOpen: F[Boolean]
-
abstract
def
localAddress: F[SocketAddress[IpAddress]]
Asks for the local address of the socket.
-
abstract
def
read(maxBytes: Int): F[Option[Chunk[Byte]]]
Reads up to
maxBytesfrom the peer.Reads up to
maxBytesfrom the peer.Returns
Noneif the "end of stream" is reached, indicating there will be no more bytes sent. -
abstract
def
readN(numBytes: Int): F[Chunk[Byte]]
Reads exactly
numBytesfrom the peer in a single chunk.Reads exactly
numBytesfrom the peer in a single chunk.Returns a chunk with size <
numBytesupon reaching the end of the stream. -
abstract
def
reads: Stream[F, Byte]
Reads bytes from the socket as a stream.
-
abstract
def
remoteAddress: F[SocketAddress[IpAddress]]
Asks for the remote address of the peer.
-
abstract
def
write(bytes: Chunk[Byte]): F[Unit]
Writes
bytesto the peer.Writes
bytesto the peer.Completes when the bytes are written to the socket.
-
abstract
def
writes: Pipe[F, Byte, INothing]
Writes the supplied stream of bytes to this socket via
writesemantics.
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() @IntrinsicCandidate()
-
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() @IntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
-
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() @IntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
-
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