PoolGetQueryServiceTKey, TResult Method |
Returns the QueryService for this Pool.
Namespace: GemStone.GemFire.Cache.GenericAssembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntaxpublic QueryService<TKey, TResult> GetQueryService<TKey, TResult>()
Public Function GetQueryService(Of TKey, TResult) As QueryService(Of TKey, TResult)
public:
generic<typename TKey, typename TResult>
QueryService<TKey, TResult>^ GetQueryService()
member GetQueryService : unit -> QueryService<'TKey, 'TResult>
Type Parameters
- TKey
- TResult
Return Value
Type:
QueryServiceTKey,
TResult
Remarks
The query operations performed using this QueryService will be executed
on the servers that are associated with this pool.
To perform Query operation on the local cache obtain the QueryService
instance from the Cache.
See Also