Click or drag to resize
Akka.NETTransportAssociate Method
Asynchronously opens a logical duplex link between two Transport entities over a network. It could be backed with a real transport layer connection (TCP), socketless connections provided over datagram protocols (UDP), and more. This call returns a Task of an AssociationHandle. A faulted Task indicates that the association attempt was unsuccessful. If the exception is InvalidAssociationException then the association request was invalid and it's impossible to recover.

Namespace:  Akka.Remote.Transport
Assembly:  Akka.Remote (in Akka.Remote.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public abstract Task<AssociationHandle> Associate(
	Address remoteAddress
)

Parameters

remoteAddress
Type: Akka.ActorAddress
The address of the remote transport entity.

Return Value

Type: TaskAssociationHandle
A status representing the failure or success containing an AssociationHandle.
See Also