public final class MulticastProperties extends Object
| Modifier and Type | Field and Description | 
|---|---|
| static PropertyDefinition | GROUPProperty used to define zones for node filtering. | 
| static PropertyDefinition | PORTProperty used to define multicast port. | 
| static PropertyDefinition | SAFE_SERIALIZATIONProperty which determines if Java Serialization is used ( false) or rather the safer and portable one
 (true). | 
public static final PropertyDefinition PORT
public static final PropertyDefinition GROUP
public static final PropertyDefinition SAFE_SERIALIZATION
false) or rather the safer and portable one
 (true). The Java native serialization format which is used by default is sensitive to
 insecure deserialization
 attacks.
 
 Safe serialization format of the MulticastMemberInfo:
 boolean (1b): flag if memberInfo provided (false mean memberInfo is null) UTF-8 (variable length): host int: (4b): portUTF-8 format notes (see
DataOutputStream.writeUTF(String)):
 
 Two bytes (short) provides subsequent length to read. This value is the number of bytes actually, not the length of the
 string. Modified UTF-8 is used for decoding.Copyright © 2022 Hazelcast, Inc.. All rights reserved.