sealed trait TLSSocket[F[_]] extends Socket[F]
TCP socket that supports encryption via TLS.
To construct a TLSSocket, use the client and server methods on TLSContext.
- Source
- TLSSocket.scala
- Alphabetic
- By Inheritance
- TLSSocket
- Socket
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
abstract
def
applicationProtocol: F[String]
Provides access to the current application protocol that has been negotiated.
-
abstract
def
beginHandshake: F[Unit]
Initiates handshaking -- either the initial or a renegotiation.
-
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.- Definition Classes
- Socket
-
abstract
def
endOfOutput: F[Unit]
Indicates to peer, we are done writing.
Indicates to peer, we are done writing. *
- Definition Classes
- Socket
-
abstract
def
isOpen: F[Boolean]
- Definition Classes
- Socket
-
abstract
def
localAddress: F[SocketAddress[IpAddress]]
Asks for the local address of the socket.
Asks for the local address of the socket.
- Definition Classes
- 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.- Definition Classes
- Socket
-
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.- Definition Classes
- Socket
-
abstract
def
reads: Stream[F, Byte]
Reads bytes from the socket as a stream.
Reads bytes from the socket as a stream.
- Definition Classes
- Socket
-
abstract
def
remoteAddress: F[SocketAddress[IpAddress]]
Asks for the remote address of the peer.
Asks for the remote address of the peer.
- Definition Classes
- Socket
-
abstract
def
session: F[SSLSession]
Provides access to the current
SSLSessionfor purposes of querying session info such as the negotiated cipher suite or the peer certificate. -
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.
- Definition Classes
- Socket
-
abstract
def
writes: Pipe[F, Byte, INothing]
Writes the supplied stream of bytes to this socket via
writesemantics.Writes the supplied stream of bytes to this socket via
writesemantics.- Definition Classes
- Socket
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