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

com.firefly.net.tcp.secure.openssl.nativelib.OpenSslEngineMap Maven / Gradle / Ivy

There is a newer version: 5.0.0-dev6
Show newest version
package com.firefly.net.tcp.secure.openssl.nativelib;

interface OpenSslEngineMap {

    /**
     * Remove the {@link OpenSslEngine} with the given {@code ssl} address and
     * return it.
     */
    ReferenceCountedOpenSslEngine remove(long ssl);

    /**
     * Add a {@link OpenSslEngine} to this {@link OpenSslEngineMap}.
     */
    void add(ReferenceCountedOpenSslEngine engine);

    /**
     * Get the {@link OpenSslEngine} for the given {@code ssl} address.
     */
    ReferenceCountedOpenSslEngine get(long ssl);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy