C-DEngine 5.105

TheTimedCallbacks<(Of <(<'T>)>)>..::..AddTimedRequest Method

Adds a new callback to the waiting list

Namespace:  nsCDEngine.BaseClasses
Assembly:  C-DEngine (in C-DEngine.dll)

Syntax


public static string AddTimedRequest(
	Action<string, T> pCallBack,
	int pTimeOut,
	Object pCookie
)
Public Shared Function AddTimedRequest ( _
	pCallBack As Action(Of String, T), _
	pTimeOut As Integer, _
	pCookie As Object _
) As String
public:
static String^ AddTimedRequest(
	Action<String^, T>^ pCallBack, 
	int^ pTimeOut, 
	Object^ pCookie
)

Parameters

pCallBack
Type: Action<(Of <(<'String, T>)>)>
The callback to be called
pTimeOut
Type: Int32
A timeout after which the callback will be called if it has not fired before.
pCookie
Type: Object
A cookie that will be fired with the callback to be sent back to the caller

Return Value