Click or drag to resize

ServerChannelRunAsync Method

Submits an action for later execution on the server's thread.

Namespace:  OBCOM.NetClient
Assembly:  OBCOM.NetClient (in OBCOM.NetClient.dll) Version: 40.82.5945.17884 (40.82.5945.17884)
Syntax
public void RunAsync(
	Action action
)

Parameters

action
Type: SystemAction
The action to be executed later on the server's thread.
Remarks

If this method is called from the server's thread, the action will still be queued for execution after all pending server events have been processed.

If action() throws an uncaught exception, the server's event dispatching thread will unwind (not the current thread).

See Also