TCP

object TCP
class Object
trait Matchable
class Any

Value members

Concrete methods

def close(socketId: SocketId): Future[Unit]
def connect(socketId: SocketId, peerAddress: String, peerPort: Int): Future[Int]
def create(properties: UndefOr[SocketProperties]): Future[CreateInfo]
def disconnect(socketId: SocketId): Future[Unit]
def getInfo(socketId: SocketId): Future[SocketInfo]
def getSockets: Future[Array[SocketInfo]]
def secure(socketId: SocketId, options: UndefOr[SecureOptions]): Future[Unit]
def send(socketId: SocketId, data: ArrayBuffer): Future[SendInfo]
def setKeepAlive(socketId: SocketId, enable: Boolean, delay: UndefOr[Int]): Future[Int]
def setNoDelay(socketId: SocketId, noDelay: Boolean): Future[Int]
def setPaused(socketId: SocketId, paused: Boolean): Future[Unit]
def update(socketId: SocketId, properties: SocketProperties): Future[Unit]