  | HazelcastClientGetRingbufferT Method  | 
 Returns the distributed Ringbuffer instance with the specified name.
 
    Namespace: 
   Hazelcast.Client
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.3
Syntaxpublic IRingbuffer<T> GetRingbuffer<T>(
	string name
)
Public Function GetRingbuffer(Of T) ( 
	name As String
) As IRingbuffer(Of T)
public:
generic<typename T>
virtual IRingbuffer<T>^ GetRingbuffer(
	String^ name
) sealed
abstract GetRingbuffer : 
        name : string -> IRingbuffer<'T> 
override GetRingbuffer : 
        name : string -> IRingbuffer<'T> Parameters
- name
 - Type: SystemString
name of the distributed Ringbuffer 
Type Parameters
- T
 
Return Value
Type: 
IRingbufferTdistributed RingBuffer instance with the specified name
Implements
IHazelcastInstanceGetRingbufferT(String)
See Also