| MvEndPointExecAsyncObjectCallback Method |
Callback that executes an asynchronous call on a remote object.
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 ExecAsyncObjectCallback(
MvRef mvref,
string funNm,
MvValue[] args,
bool inTrans = true
)
Public Overridable Function ExecAsyncObjectCallback (
mvref As MvRef,
funNm As String,
args As MvValue(),
Optional inTrans As Boolean = true
) As Boolean
public:
virtual bool ExecAsyncObjectCallback(
MvRef mvref,
String^ funNm,
array<MvValue^>^ args,
bool inTrans = true
)
Parameters
- mvref
- Type: RW.Server.ComponentMvRef
The object reference for the object. - funNm
- Type: SystemString
The function name to invoke. - args
- Type: RW.Server.ComponentMvValue
The arguments passed to the function funNm.
- inTrans (Optional)
- Type: SystemBoolean
This parameter indicates whether the callback must be executed
using the transaction mechanism or not (see Transaction
control in MvComponent). If this parameter is set
to true and no current transaction has been
initialized, a new one is implicitly created and committed.
Return Value
Type:
Booleanfalse if the request callback couldn't be sent,
true otherwise.
Remarks
The function funNm is invoked on the remote
object identified by the reference mvref.
mvref.
See Also