public class DCPHandler extends AbstractGenericHandler<FullBinaryMemcacheResponse,BinaryMemcacheRequest,DCPRequest>
ChannelHandler.Sharable| Modifier and Type | Field and Description |
|---|---|
static byte |
OP_BUFFER_ACK |
static byte |
OP_CONTROL |
static byte |
OP_GET_FAILOVER_LOG |
static byte |
OP_MUTATION |
static byte |
OP_OPEN_CONNECTION |
static byte |
OP_REMOVE |
static byte |
OP_SNAPSHOT_MARKER |
static byte |
OP_STREAM_END |
static byte |
OP_STREAM_REQUEST |
CHARSET| Constructor and Description |
|---|
DCPHandler(AbstractEndpoint endpoint,
com.lmax.disruptor.EventSink<ResponseEvent> responseBuffer,
boolean isTransient)
Creates a new
DCPHandler with the default queue for requests. |
DCPHandler(AbstractEndpoint endpoint,
com.lmax.disruptor.EventSink<ResponseEvent> responseBuffer,
Queue<DCPRequest> queue,
boolean isTransient)
Creates a new
DCPHandler with a custom queue for requests (suitable for tests). |
| Modifier and Type | Method and Description |
|---|---|
protected CouchbaseResponse |
decodeResponse(ChannelHandlerContext ctx,
FullBinaryMemcacheResponse msg)
Decodes the incoming response and transforms it into a
CouchbaseResponse. |
protected BinaryMemcacheRequest |
encodeRequest(ChannelHandlerContext ctx,
DCPRequest msg)
Encode the outgoing request and return it in encoded format.
|
void |
handlerRemoved(ChannelHandlerContext ctx) |
protected ServiceType |
serviceType()
Returns the
ServiceType associated with this handler. |
channelActive, channelInactive, channelWritabilityChanged, connect, createKeepAliveRequest, currentRequest, currentRequest, decode, encode, endpoint, env, exceptionCaught, finishedDecoding, logIdent, onKeepAliveFired, onKeepAliveResponse, publishResponse, remoteHostname, sideEffectRequestToCancel, userEventTriggeredacceptInboundMessage, acceptOutboundMessage, channelRead, writebind, close, deregister, disconnect, flush, readchannelReadComplete, channelRegistered, channelUnregisteredhandlerAdded, isSharableclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waithandlerAddedpublic static final byte OP_OPEN_CONNECTION
public static final byte OP_STREAM_REQUEST
public static final byte OP_STREAM_END
public static final byte OP_SNAPSHOT_MARKER
public static final byte OP_MUTATION
public static final byte OP_REMOVE
public static final byte OP_CONTROL
public static final byte OP_BUFFER_ACK
public static final byte OP_GET_FAILOVER_LOG
public DCPHandler(AbstractEndpoint endpoint, com.lmax.disruptor.EventSink<ResponseEvent> responseBuffer, boolean isTransient)
Creates a new DCPHandler with the default queue for requests.
endpoint - the AbstractEndpoint to coordinate with.responseBuffer - the EventSink to push responses into.public DCPHandler(AbstractEndpoint endpoint, com.lmax.disruptor.EventSink<ResponseEvent> responseBuffer, Queue<DCPRequest> queue, boolean isTransient)
Creates a new DCPHandler with a custom queue for requests (suitable for tests).
endpoint - the AbstractEndpoint to coordinate with.responseBuffer - the EventSink to push responses into.queue - the queue which holds all outstanding open requests.protected BinaryMemcacheRequest encodeRequest(ChannelHandlerContext ctx, DCPRequest msg) throws Exception
AbstractGenericHandlerEncode the outgoing request and return it in encoded format.
This method needs to be implemented by the child handler and is responsible for the actual conversion.
encodeRequest in class AbstractGenericHandler<FullBinaryMemcacheResponse,BinaryMemcacheRequest,DCPRequest>ctx - the context passed in.msg - the outgoing message.Exception - as a generic error.protected CouchbaseResponse decodeResponse(ChannelHandlerContext ctx, FullBinaryMemcacheResponse msg) throws Exception
AbstractGenericHandlerDecodes the incoming response and transforms it into a CouchbaseResponse.
Note that the actual notification is handled by this generic handler, the implementing class only is concerned about the conversion itself.
decodeResponse in class AbstractGenericHandler<FullBinaryMemcacheResponse,BinaryMemcacheRequest,DCPRequest>ctx - the context passed in.msg - the incoming message.Exception - as a generic error. It will be bubbled up to the user (wrapped in a CouchbaseException) in the onError of the request’s Observable.public void handlerRemoved(ChannelHandlerContext ctx) throws Exception
handlerRemoved in interface ChannelHandlerhandlerRemoved in class AbstractGenericHandler<FullBinaryMemcacheResponse,BinaryMemcacheRequest,DCPRequest>Exceptionprotected ServiceType serviceType()
AbstractGenericHandlerReturns the ServiceType associated with this handler.
serviceType in class AbstractGenericHandler<FullBinaryMemcacheResponse,BinaryMemcacheRequest,DCPRequest>Copyright © 2016 Couchbase, Inc.. All rights reserved.