Execute an update transaction.
Namespace: BrightstarDB.ClientAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
C# |
---|
public IJobInfo ExecuteTransaction(
string storeName,
UpdateTransactionData updateTransaction,
bool waitForCompletion = true,
string label = null
) |
Visual Basic |
---|
Public Function ExecuteTransaction (
storeName As String,
updateTransaction As UpdateTransactionData,
Optional waitForCompletion As Boolean = true,
Optional label As String = Nothing
) As IJobInfo |
Visual C++ |
---|
public:
virtual IJobInfo^ ExecuteTransaction(
String^ storeName,
UpdateTransactionData^ updateTransaction,
bool waitForCompletion = true,
String^ label = nullptr
) sealed |
F# |
---|
abstract ExecuteTransaction :
storeName : string *
updateTransaction : UpdateTransactionData *
?waitForCompletion : bool *
?label : string
(* Defaults:
let _waitForCompletion = defaultArg waitForCompletion true
let _label = defaultArg label null
*)
-> IJobInfo
override ExecuteTransaction :
storeName : string *
updateTransaction : UpdateTransactionData *
?waitForCompletion : bool *
?label : string
(* Defaults:
let _waitForCompletion = defaultArg waitForCompletion true
let _label = defaultArg label null
*)
-> IJobInfo |
Parameters
- storeName
- Type: System..::..String
The name of the store to modify
- updateTransaction
- Type: BrightstarDB.Client..::..UpdateTransactionData
The update transaction data
- waitForCompletion (Optional)
- Type: System..::..Boolean
If set to true the method will block until the transaction completes
- label (Optional)
- Type: System..::..String
Optional user-friendly label for the job.
Return Value
Type:
IJobInfoA
IJobInfo instance for monitoring the status of the job
Implements
IBrightstarService..::..ExecuteTransaction(String, UpdateTransactionData, Boolean, String)
See Also