| HazelcastClientGetTopicT Method |
Returns the distributed topic instance with the specified name.
Namespace:
Hazelcast.Client
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.3
Syntax public ITopic<T> GetTopic<T>(
string name
)
Public Function GetTopic(Of T) (
name As String
) As ITopic(Of T)
public:
generic<typename T>
virtual ITopic<T>^ GetTopic(
String^ name
) sealed
abstract GetTopic :
name : string -> ITopic<'T>
override GetTopic :
name : string -> ITopic<'T>
Parameters
- name
- Type: SystemString
name of the distributed topic
Type Parameters
- T
- The type of elements in the Topic
Return Value
Type:
ITopicTdistributed topic instance with the specified name
Implements
IHazelcastInstanceGetTopicT(String)Remarks Returns the distributed topic instance with the specified name.
See Also