Executes a task on a specific space node. The space node it will
            execute on is controlled by the routing value provided as a second parameter.
            
 Declaration Syntax
 Declaration Syntax| C# | Visual Basic | Visual C++ | J# | 
T Execute<T>( ISpaceTask<T> task, Object routing, ITransaction tx, int timeout )
Function Execute(Of T) ( _ task As ISpaceTask(Of T), _ routing As Object, _ tx As ITransaction, _ timeout As Integer _ ) As T
generic<typename T> T Execute( ISpaceTask<T>^ task, Object^ routing, ITransaction^ tx, int timeout )
 Generic Template Parameters
 Generic Template Parameters- T
- Type of task execution result.
 Parameters
 Parameters- task (ISpaceTask<(Of <(<'T>)>)>)
- The space task to execute.
- routing (Object)
- Controls routing of the task.
- tx (ITransaction)
- The transaction (if any) under which to work.
 Return Value
 Return ValueAn IAsyncResult that references the asynchronous execution.
 Exceptions
 Exceptions| Exception | Condition | 
|---|---|
| OperationTimeoutException | Timeout expired. | 
