| RpObjectExecAsyncCallback Method |
This function executes a given function in asynchronous mode on the
Server object associated with the representation 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 ExecAsyncCallback(
string funName,
MvValue[] argv,
bool inTrans = true
)
Public Overridable Function ExecAsyncCallback (
funName As String,
argv As MvValue(),
Optional inTrans As Boolean = true
) As Boolean
public:
virtual bool ExecAsyncCallback(
String^ funName,
array<MvValue^>^ argv,
bool inTrans = true
)
Parameters
- funName
- Type: SystemString
:
The function name. - argv
- Type: RW.Server.ComponentMvValue
:
The arguments. - inTrans (Optional)
- Type: SystemBoolean
This parameter 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:
Boolean false if the request callback couldn't be sent, true otherwise
See Also