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

org.kurento.jsonrpc.internal.server.NativeSessionHandler Maven / Gradle / Ivy

There is a newer version: 7.1.0
Show newest version

package org.kurento.jsonrpc.internal.server;

import org.kurento.jsonrpc.Session;

/**
 * This interface will be implemented by JsonRpcHandlers that want a low level handling of requests
 * with unknown sessionId. It is specially useful in clustered environments when session can be
 * stored in other data structures
 *
 * @author [email protected]
 */
public interface NativeSessionHandler {

  public boolean isSessionKnown(String sessionId);

  public void processNewCreatedKnownSession(Session session);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy