All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.scalecube.services.gateway.GatewaySession Maven / Gradle / Ivy

package io.scalecube.services.gateway;

import java.util.Map;

public interface GatewaySession {

  /**
   * Session id representation to be unique per client session.
   *
   * @return session id
   */
  long sessionId();

  /**
   * Returns headers associated with session.
   *
   * @return headers map
   */
  Map headers();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy