Takes (removes) an entry matching the specified id query from the space.
            Blocks up to the specified timeout (if any) until a matching entry is available.
            
| C# | Visual Basic | Visual C++ | J# | 
T TakeById<T>( IdQuery<T> idQuery, ITransaction tx )
Function TakeById(Of T) ( _ idQuery As IdQuery(Of T), _ tx As ITransaction _ ) As T
generic<typename T> T TakeById( IdQuery<T> idQuery, ITransaction^ tx )
- T
 - Type of expected result entry.
 
- idQuery (IdQuery<(Of <(T>)>))
 - The query to search by.
 
- tx (ITransaction)
 - The transaction which this operation will participate in.
 
Result entry from space (null if not found).
