  | IHazelcastInstanceGetRingbufferT Method  | 
 Returns the distributed Ringbuffer instance with the specified name.
 
    Namespace: 
   Hazelcast.Core
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.4
SyntaxIRingbuffer<T> GetRingbuffer<T>(
	string name
)
Function GetRingbuffer(Of T) ( 
	name As String
) As IRingbuffer(Of T)
generic<typename T>
IRingbuffer<T>^ GetRingbuffer(
	String^ name
)
abstract 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
See Also