com.payneteasy.superfly.client.SessionToucher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of superfly-client Show documentation
Show all versions of superfly-client Show documentation
Contains classes used to use Superfly facilities by clients
package com.payneteasy.superfly.client;
/**
* Used to touch sessions.
*
* @author Roman Puchkovskiy
*/
public interface SessionToucher {
/**
* Adds a session ID to be touched.
*
* @param sessionId ID of a session to touch
*/
void addSessionId(long sessionId);
}