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

com.nike.riposte.server.http.ProcessingState Maven / Gradle / Ivy

There is a newer version: 0.20.0
Show newest version
package com.nike.riposte.server.http;

/**
 * Interface describing what methods need to be available for a processing state object.
 *
 * @author Nic Munroe
 */
public interface ProcessingState {

    /**
     * Calling this will clean this object's state for a new request. Implementations should do anything necessary to
     * properly close/flush/clean/remove/delete/etc any state that might be stale leftover state from a previous
     * request.
     */
    void cleanStateForNewRequest();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy