Uses of Interface
org.apache.jute.Record
-
Packages that use Record Package Description org.apache.jute Hadoop record I/O contains classes and a record description language translator for simplifying serialization and deserialization of records in a language-neutral manner.org.apache.zookeeper org.apache.zookeeper.data org.apache.zookeeper.proto org.apache.zookeeper.server ZooKeeper server theory of operationorg.apache.zookeeper.server.controller org.apache.zookeeper.server.persistence org.apache.zookeeper.server.quorum org.apache.zookeeper.txn -
-
Uses of Record in org.apache.jute
Methods in org.apache.jute with parameters of type Record Modifier and Type Method Description void
BinaryOutputArchive. endRecord(Record r, java.lang.String tag)
void
OutputArchive. endRecord(Record r, java.lang.String tag)
void
ToStringOutputArchive. endRecord(Record r, java.lang.String tag)
void
RecordReader. read(Record r)
Deserialize a record.void
BinaryInputArchive. readRecord(Record r, java.lang.String tag)
void
InputArchive. readRecord(Record r, java.lang.String tag)
void
BinaryOutputArchive. startRecord(Record r, java.lang.String tag)
void
OutputArchive. startRecord(Record r, java.lang.String tag)
void
ToStringOutputArchive. startRecord(Record r, java.lang.String tag)
void
RecordWriter. write(Record r)
Serialize a record.void
BinaryOutputArchive. writeRecord(Record r, java.lang.String tag)
void
OutputArchive. writeRecord(Record r, java.lang.String tag)
void
ToStringOutputArchive. writeRecord(Record r, java.lang.String tag)
-
Uses of Record in org.apache.zookeeper
Classes in org.apache.zookeeper that implement Record Modifier and Type Class Description class
MultiOperationRecord
Encodes a composite operation.class
MultiResponse
Handles the response from a multi request.Methods in org.apache.zookeeper that return Record Modifier and Type Method Description Record
Op.Check. toRequestRecord()
Record
Op.Create. toRequestRecord()
Record
Op.CreateTTL. toRequestRecord()
Record
Op.Delete. toRequestRecord()
Record
Op.GetChildren. toRequestRecord()
Record
Op.GetData. toRequestRecord()
Record
Op.SetData. toRequestRecord()
abstract Record
Op. toRequestRecord()
Encodes an op for wire transmission.Methods in org.apache.zookeeper with parameters of type Record Modifier and Type Method Description org.apache.zookeeper.ClientCnxn.Packet
ClientCnxn. queuePacket(RequestHeader h, ReplyHeader r, Record request, Record response, AsyncCallback cb, java.lang.String clientPath, java.lang.String serverPath, java.lang.Object ctx, ZooKeeper.WatchRegistration watchRegistration)
org.apache.zookeeper.ClientCnxn.Packet
ClientCnxn. queuePacket(RequestHeader h, ReplyHeader r, Record request, Record response, AsyncCallback cb, java.lang.String clientPath, java.lang.String serverPath, java.lang.Object ctx, ZooKeeper.WatchRegistration watchRegistration, WatchDeregistration watchDeregistration)
void
ClientCnxn. sendPacket(Record request, Record response, AsyncCallback cb, int opCode)
ReplyHeader
ClientCnxn. submitRequest(RequestHeader h, Record request, Record response, ZooKeeper.WatchRegistration watchRegistration)
ReplyHeader
ClientCnxn. submitRequest(RequestHeader h, Record request, Record response, ZooKeeper.WatchRegistration watchRegistration, WatchDeregistration watchDeregistration)
-
Uses of Record in org.apache.zookeeper.data
Classes in org.apache.zookeeper.data that implement Record Modifier and Type Class Description class
ACL
class
ClientInfo
class
Id
class
Stat
class
StatPersisted
-
Uses of Record in org.apache.zookeeper.proto
-
Uses of Record in org.apache.zookeeper.server
Classes in org.apache.zookeeper.server that implement Record Modifier and Type Class Description class
DataNode
This class contains the data for a node in the data tree.Methods in org.apache.zookeeper.server that return Record Modifier and Type Method Description Record
Request. getTxn()
Record
TxnLogEntry. getTxn()
Methods in org.apache.zookeeper.server with parameters of type Record Modifier and Type Method Description static void
ByteBufferInputStream. byteBuffer2Record(java.nio.ByteBuffer bb, Record record)
boolean
DataTree. compareDigest(TxnHeader header, Record txn, TxnDigest digest)
Compares the digest of the tree with the digest present in transaction digest.boolean
ZKDatabase. compareDigest(TxnHeader header, Record txn, TxnDigest digest)
protected void
PrepRequestProcessor. pRequest2Txn(int type, long zxid, Request request, Record record, boolean deserialize)
This method will be called inside the ProcessRequestThread, which is a singleton, so there will be a single thread calling this code.DataTree.ProcessTxnResult
DataTree. processTxn(TxnHeader header, Record txn)
DataTree.ProcessTxnResult
DataTree. processTxn(TxnHeader header, Record txn, boolean isSubTxn)
DataTree.ProcessTxnResult
DataTree. processTxn(TxnHeader header, Record txn, TxnDigest digest)
DataTree.ProcessTxnResult
ZKDatabase. processTxn(TxnHeader hdr, Record txn, TxnDigest digest)
the process txn on the data and perform digest comparision.DataTree.ProcessTxnResult
ZooKeeperServer. processTxn(TxnHeader hdr, Record txn)
static void
ByteBufferOutputStream. record2ByteBuffer(Record record, java.nio.ByteBuffer bb)
int
DumbWatcher. sendResponse(ReplyHeader h, Record r, java.lang.String tag, java.lang.String cacheKey, Stat stat, int opCode)
int
NettyServerCnxn. sendResponse(ReplyHeader h, Record r, java.lang.String tag, java.lang.String cacheKey, Stat stat, int opCode)
int
NIOServerCnxn. sendResponse(ReplyHeader h, Record r, java.lang.String tag, java.lang.String cacheKey, Stat stat, int opCode)
int
ServerCnxn. sendResponse(ReplyHeader h, Record r, java.lang.String tag)
abstract int
ServerCnxn. sendResponse(ReplyHeader h, Record r, java.lang.String tag, java.lang.String cacheKey, Stat stat, int opCode)
Serializes a ZooKeeper response and enqueues it for sending.protected java.nio.ByteBuffer[]
ServerCnxn. serialize(ReplyHeader h, Record r, java.lang.String tag, java.lang.String cacheKey, Stat stat, int opCode)
protected byte[]
ServerCnxn. serializeRecord(Record record)
void
Request. setTxn(Record txn)
Constructors in org.apache.zookeeper.server with parameters of type Record Constructor Description Request(long sessionId, int xid, int type, TxnHeader hdr, Record txn, long zxid)
TxnLogEntry(Record txn, TxnHeader header, TxnDigest digest)
-
Uses of Record in org.apache.zookeeper.server.controller
Methods in org.apache.zookeeper.server.controller with parameters of type Record Modifier and Type Method Description int
ControllableConnection. sendResponse(ReplyHeader header, Record record, java.lang.String tag)
-
Uses of Record in org.apache.zookeeper.server.persistence
Classes in org.apache.zookeeper.server.persistence that implement Record Modifier and Type Class Description class
FileHeader
Methods in org.apache.zookeeper.server.persistence that return Record Modifier and Type Method Description Record
FileTxnLog.FileTxnIterator. getTxn()
return the current transactionRecord
TxnLog.TxnIterator. getTxn()
return the transaction record.Methods in org.apache.zookeeper.server.persistence with parameters of type Record Modifier and Type Method Description boolean
FileTxnLog. append(TxnHeader hdr, Record txn)
append an entry to the transaction logboolean
FileTxnLog. append(TxnHeader hdr, Record txn, TxnDigest digest)
boolean
TxnLog. append(TxnHeader hdr, Record r)
Append a request to the transaction logboolean
TxnLog. append(TxnHeader hdr, Record r, TxnDigest digest)
Append a request to the transaction log with a digsetstatic byte[]
Util. marshallTxnEntry(TxnHeader hdr, Record txn)
Serializes transaction header and transaction data into a byte buffer.static byte[]
Util. marshallTxnEntry(TxnHeader hdr, Record txn, TxnDigest digest)
void
FileTxnSnapLog.PlayBackListener. onTxnLoaded(TxnHeader hdr, Record rec, TxnDigest digest)
void
FileTxnSnapLog. processTransaction(TxnHeader hdr, DataTree dt, java.util.Map<java.lang.Long,java.lang.Integer> sessions, Record txn)
process the transaction on the datatree -
Uses of Record in org.apache.zookeeper.server.quorum
Classes in org.apache.zookeeper.server.quorum that implement Record Modifier and Type Class Description class
LearnerInfo
class
QuorumAuthPacket
class
QuorumPacket
Methods in org.apache.zookeeper.server.quorum with parameters of type Record Modifier and Type Method Description void
FollowerZooKeeperServer. logRequest(TxnHeader hdr, Record txn, TxnDigest digest)
-
Uses of Record in org.apache.zookeeper.txn
Classes in org.apache.zookeeper.txn that implement Record Modifier and Type Class Description class
CheckVersionTxn
class
CloseSessionTxn
class
CreateContainerTxn
class
CreateSessionTxn
class
CreateTTLTxn
class
CreateTxn
class
CreateTxnV0
class
DeleteTxn
class
ErrorTxn
class
MultiTxn
class
SetACLTxn
class
SetDataTxn
class
SetMaxChildrenTxn
class
Txn
class
TxnDigest
class
TxnHeader
-