![JAR search and dependency download from the Maven repository](/logo.png)
io.apptik.comm.jus.RequestStore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jus-java Show documentation
Show all versions of jus-java Show documentation
Communication library for Android and Java
The newest version!
package io.apptik.comm.jus;
public interface RequestStore {
/**
* Push request to the store
* @param request
*/
void push(Request> request);
/**
* Remove request from the store if it exists
* @param request
*/
void remove(Request> request);
/**
* Retrieve the next available {@link Request} and removes it from the store
* @param requestFilter useful to filter the next {@link Request} in case specific type is
* needed
* @return appropriate {@link Request} or null
*/
Request> pop(RequestQueue.RequestFilter requestFilter);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy