java.lang.Object
java.lang.Record
nl.andrewl.concord_core.msg.types.ServerUsers
- All Implemented Interfaces:
Message
This message is sent from the server to the client whenever a change happens
which requires the server to notify clients about a change of the list of
global users.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionServerUsers
(UserData[] users) Creates an instance of aServerUsers
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.UserData[]
users()
Returns the value of theusers
record component.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface nl.andrewl.concord_core.msg.Message
byteSize, getTypeSerializer
-
Field Details
-
users
The field for theusers
record component.
-
-
Constructor Details
-
ServerUsers
Creates an instance of aServerUsers
record class.- Parameters:
users
- the value for theusers
record component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
users
Returns the value of theusers
record component.- Returns:
- the value of the
users
record component
-