00001
00002
00003
00004
00005
00006 package com.sleepycat.db.rpcserver;
00007 import org.acplt.oncrpc.*;
00008 import java.io.IOException;
00009
00010 public class __env_txn_recover_reply implements XdrAble {
00011 public int status;
00012 public int [] txn;
00013 public byte [] gid;
00014 public int retcount;
00015
00016 public __env_txn_recover_reply() {
00017 }
00018
00019 public __env_txn_recover_reply(XdrDecodingStream xdr)
00020 throws OncRpcException, IOException {
00021 xdrDecode(xdr);
00022 }
00023
00024 public void xdrEncode(XdrEncodingStream xdr)
00025 throws OncRpcException, IOException {
00026 xdr.xdrEncodeInt(status);
00027 xdr.xdrEncodeIntVector(txn);
00028 xdr.xdrEncodeDynamicOpaque(gid);
00029 xdr.xdrEncodeInt(retcount);
00030 }
00031
00032 public void xdrDecode(XdrDecodingStream xdr)
00033 throws OncRpcException, IOException {
00034 status = xdr.xdrDecodeInt();
00035 txn = xdr.xdrDecodeIntVector();
00036 gid = xdr.xdrDecodeDynamicOpaque();
00037 retcount = xdr.xdrDecodeInt();
00038 }
00039
00040 }
00041