  | HazelcastClientGetQueueT Method  | 
 
            Returns the distributed queue instance with the specified name.
            
 
    Namespace: 
   Hazelcast.Client
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.11
Syntaxpublic IQueue<T> GetQueue<T>(
	string name
)
Public Function GetQueue(Of T) ( 
	name As String
) As IQueue(Of T)
public:
generic<typename T>
virtual IQueue<T>^ GetQueue(
	String^ name
) sealed
abstract GetQueue : 
        name : string -> IQueue<'T> 
override GetQueue : 
        name : string -> IQueue<'T> Parameters
- name
 - Type: SystemString
name of the distributed queue 
Type Parameters
- T
 - The type of elements in the queue.
 
Return Value
Type: 
IQueueTdistributed queue instance with the specified name
Implements
IHazelcastInstanceGetQueueT(String)
RemarksReturns the distributed queue instance with the specified name.
See Also