  | IHazelcastInstanceGetQueueT Method  | 
 
            Returns the distributed queue instance with the specified name.
            
 
    Namespace: 
   Hazelcast.Core
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.10
SyntaxIQueue<T> GetQueue<T>(
	string name
)
Function GetQueue(Of T) ( 
	name As String
) As IQueue(Of T)
generic<typename T>
IQueue<T>^ GetQueue(
	String^ name
)
abstract 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
RemarksReturns the distributed queue instance with the specified name.
See Also