C# Class Akka.IO.SocketChannel

Mostra file Open project: rogeralsing/akka.net Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
Accept ( ) : SocketChannel
Close ( ) : void
ConfigureBlocking ( bool block ) : SocketChannel
Connect ( EndPoint address ) : bool
FinishConnect ( ) : bool
IsOpen ( ) : bool
Open ( ) : SocketChannel
Read ( ByteBuffer buffer ) : int
Register ( IActorRef connection, SocketAsyncOperation initialOps ) : void
SocketChannel ( Socket socket ) : System
Write ( ByteBuffer buffer ) : int

Method Details

Accept() public method

public Accept ( ) : SocketChannel
return SocketChannel

Close() public method

public Close ( ) : void
return void

ConfigureBlocking() public method

public ConfigureBlocking ( bool block ) : SocketChannel
block bool
return SocketChannel

Connect() public method

public Connect ( EndPoint address ) : bool
address System.Net.EndPoint
return bool

FinishConnect() public method

public FinishConnect ( ) : bool
return bool

IsOpen() public method

public IsOpen ( ) : bool
return bool

Open() public static method

public static Open ( ) : SocketChannel
return SocketChannel

Read() public method

public Read ( ByteBuffer buffer ) : int
buffer ByteBuffer
return int

Register() public method

public Register ( IActorRef connection, SocketAsyncOperation initialOps ) : void
connection IActorRef
initialOps SocketAsyncOperation
return void

SocketChannel() public method

public SocketChannel ( Socket socket ) : System
socket Socket
return System

Write() public method

public Write ( ByteBuffer buffer ) : int
buffer ByteBuffer
return int