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

org.rx.net.http.cookie.CookieCache Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package org.rx.net.http.cookie;

import java.util.Collection;

import okhttp3.Cookie;

/**
 * A CookieCache handles the volatile cookie session storage.
 */
public interface CookieCache extends Iterable {
    void addAll(Collection cookies);

    void clear();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy