Click or drag to resize

GroupConfig Class

Contains the configuration for Hazelcast groups.
Inheritance Hierarchy
SystemObject
  Hazelcast.ConfigGroupConfig

Namespace:  Hazelcast.Config
Assembly:  Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.3
Syntax
public sealed class GroupConfig

The GroupConfig type exposes the following members.

Constructors
  NameDescription
Public methodGroupConfig
Creates a GroupConfig with default group-name and group-password.
Public methodGroupConfig(String)
Creates a GroupConfig with the given group-name and default group-password
Public methodGroupConfig(String, String)
Creates a GroupConfig with the given group-name and group-password
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Overrides ObjectEquals(Object).)
Public methodGetHashCode
Serves as the default hash function.
(Overrides ObjectGetHashCode.)
Public methodGetName
Gets the name of the group.
Public methodGetPassword
Gets the password to connec to to the group.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodSetName
Sets the group name.
Public methodSetPassword
Sets the password.
Public methodToString
Returns a string that represents the current object.
(Overrides ObjectToString.)
Top
Fields
  NameDescription
Public fieldStatic memberDefaultGroupName
Default group name.
Public fieldStatic memberDefaultGroupPassword
Default group password.
Top
Remarks
Contains the configuration for Hazelcast groups. With groups it is possible to create multiple clusters where each cluster has its own group and doesn't interfere with other clusters.
See Also