List of usage examples for io.netty.util ReferenceCounted interface-usage
From source file at.yawk.dbus.protocol.object.AlignableByteBuf.java
/** * @author yawkat */ @ToString @EqualsAndHashCode public class AlignableByteBuf implements ReferenceCounted {
From source file com.couchbase.client.core.message.kv.BinaryResponse.java
/** * Marker interface which signals a binary response. * * @since 1.0.0 */ public interface BinaryResponse extends CouchbaseResponse, ReferenceCounted {
From source file com.couchbase.client.core.message.view.GetDesignDocumentResponse.java
public class GetDesignDocumentResponse extends AbstractCouchbaseResponse implements ReferenceCounted { private final String name; private final boolean development; private final ByteBuf content;
From source file com.couchbase.client.core.message.view.RemoveDesignDocumentResponse.java
public class RemoveDesignDocumentResponse extends AbstractCouchbaseResponse implements ReferenceCounted { private final ByteBuf content; public RemoveDesignDocumentResponse(ResponseStatus status, ByteBuf content, CouchbaseRequest request) { super(status, request);
From source file com.couchbase.client.core.message.view.UpsertDesignDocumentResponse.java
public class UpsertDesignDocumentResponse extends AbstractCouchbaseResponse implements ReferenceCounted { private final ByteBuf content; public UpsertDesignDocumentResponse(ResponseStatus status, ByteBuf content, CouchbaseRequest request) { super(status, request);
From source file com.google.devtools.build.lib.remote.ReferenceCountedChannel.java
/** A wrapper around a {@link io.grpc.ManagedChannel} exposing a reference count.
* When instantiated the reference count is 1. {@link ManagedChannel#shutdown()} will be called
* on the wrapped channel when the reference count reaches 0.
*
* See {@link ReferenceCounted} for more information about reference counting.
*/
From source file com.tesora.dve.db.mysql.portal.protocol.MSPMessage.java
/** * */ public interface MSPMessage extends MysqlMessage, ReferenceCounted { byte getMysqlMessageType();
From source file darks.grid.beans.GridMessage.java
public class GridMessage implements Serializable, Cloneable, ReferenceCounted { private static final long serialVersionUID = -3272844069153062845L; public static final int MSG_JOIN = 1001;
From source file divconq.http.multipart.InterfaceHttpData.java
/** * Interface for all Objects that could be encoded/decoded using HttpPostRequestEncoder/Decoder */ public interface InterfaceHttpData extends Comparable<InterfaceHttpData>, ReferenceCounted { enum HttpDataType { Attribute, FileUpload, InternalAttribute
From source file io.advantageous.conekt.http.impl.ws.WebSocketFrameImpl.java
/**
* The default {@link WebSocketFrameInternal} implementation.
*
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev: 2080 $, $Date: 2010-01-26 18:04:19 +0900 (Tue, 26 Jan 2010) $