com.fireflysource.net.tcp.secure.HandshakeResult Maven / Gradle / Ivy
package com.fireflysource.net.tcp.secure;
import java.nio.ByteBuffer;
import java.util.List;
public interface HandshakeResult {
/**
* Get the stashed application buffers during the handshake process.
*
* @return The stashed application buffers.
*/
List getStashedAppBuffers();
/**
* The application protocol negotiation result.
*
* @return The application protocol negotiation result.
*/
String getApplicationProtocol();
}