Interface SessionMetaDataEntryOffsets


public interface SessionMetaDataEntryOffsets
Encapsulates session metadata entry offsets.
Author:
Paul Ferraro
  • Method Summary

    Modifier and Type
    Method
    Description
    org.wildfly.clustering.server.offset.Offset<Instant>
    Returns the last access end time delta, as an offset from the current value.
    org.wildfly.clustering.server.offset.Offset<Instant>
    Returns the last access start time delta, as an offset from the current value.
    org.wildfly.clustering.server.offset.Offset<Duration>
    Returns the session timeout delta, as an offset from the current value.
  • Method Details

    • getTimeoutOffset

      org.wildfly.clustering.server.offset.Offset<Duration> getTimeoutOffset()
      Returns the session timeout delta, as an offset from the current value.
      Returns:
      the session timeout delta, as an offset from the current value.
    • getLastAccessStartTimeOffset

      org.wildfly.clustering.server.offset.Offset<Instant> getLastAccessStartTimeOffset()
      Returns the last access start time delta, as an offset from the current value.
      Returns:
      the last access start time delta, as an offset from the current value.
    • getLastAccessEndTimeOffset

      org.wildfly.clustering.server.offset.Offset<Instant> getLastAccessEndTimeOffset()
      Returns the last access end time delta, as an offset from the current value.
      Returns:
      the last access end time delta, as an offset from the current value.