| MvEndPointExecAsyncGlobalCallback Method |
Callback that executes an asynchronous call to a remote function.
Namespace: RW.Server.ComponentAssembly: RW.Server.Component (in RW.Server.Component.dll) Version: 6.3.0.0 (0.8.0.0)
Syntax public virtual bool ExecAsyncGlobalCallback(
string funNm,
MvValue[] args,
bool inTrans = true
)
Public Overridable Function ExecAsyncGlobalCallback (
funNm As String,
args As MvValue(),
Optional inTrans As Boolean = true
) As Boolean
public:
virtual bool ExecAsyncGlobalCallback(
String^ funNm,
array<MvValue^>^ args,
bool inTrans = true
)
Parameters
- funNm
- Type: SystemString
The function name to invoke. - args
- Type: RW.Server.ComponentMvValue
The arguments sent to the function funNm.
- inTrans (Optional)
- Type: SystemBoolean
Indicates if the callback must be executed
using the transaction mechanism or not (see Transaction
control in MvComponent). If equal to true and
if no current transaction has been initialized, a new one is
implicitly created and commited.
Return Value
Type:
Booleanfalse if the request callback couldn't be sent,
true otherwise.
See Also