Skip to content

Instantly share code, notes, and snippets.

@jnorthrup
Created June 19, 2014 19:00
Show Gist options
  • Save jnorthrup/7c101a656732dddd3b06 to your computer and use it in GitHub Desktop.
Save jnorthrup/7c101a656732dddd3b06 to your computer and use it in GitHub Desktop.
package rxf.web.inf;
import rxf.core.Rfc822HeaderState;
import java.nio.ByteBuffer;
import java.nio.channels.SocketChannel;
public interface ServiceHandoff {
ByteBuffer getCursor();
void setCursor(ByteBuffer cursor);
SocketChannel getChannel();
void setChannel(SocketChannel channel);
Rfc822HeaderState.HttpRequest getReq();
void setReq(Rfc822HeaderState.HttpRequest req);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment