LinkedTransports

data class LinkedTransports(val clientTransport: ChannelTransport, val serverTransport: ChannelTransport)(source)

Represents a pair of interconnected ChannelTransports for bidirectional communication.

Messages sent via one transport are received by the other. This is useful for setting up communication between a client and server without requiring external networking.

Constructors

Link copied to clipboard
constructor(clientTransport: ChannelTransport, serverTransport: ChannelTransport)

Properties

Link copied to clipboard

The transport intended for use on the client-side.

Link copied to clipboard

The transport intended for use on the server-side.