Record Class PushResolver.LiveSession

java.lang.Object
java.lang.Record
com.iizix.server.push.engine.PushResolver.LiveSession
Record Components:
uid - The user ID.
appId - The application ID of the session.
session - The client session.
remote - The remote address, null when unknown.
Enclosing class:
PushResolver

public static record PushResolver.LiveSession(long uid, String appId, IClientSessionGyro session, InetAddress remote) extends Record
A live client session of an authenticated user.
Author:
Christopher Mindus
  • Constructor Details

    • LiveSession

      public LiveSession(long uid, String appId, IClientSessionGyro session, InetAddress remote)
      Creates an instance of a LiveSession record class.
      Parameters:
      uid - the value for the uid record component
      appId - the value for the appId record component
      session - the value for the session record component
      remote - the value for the remote record component
  • Method Details

    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with the compare method from their corresponding wrapper classes.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • uid

      public long uid()
      Returns the value of the uid record component.
      Returns:
      the value of the uid record component
    • appId

      public String appId()
      Returns the value of the appId record component.
      Returns:
      the value of the appId record component
    • session

      public IClientSessionGyro session()
      Returns the value of the session record component.
      Returns:
      the value of the session record component
    • remote

      public InetAddress remote()
      Returns the value of the remote record component.
      Returns:
      the value of the remote record component