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 __txn_prepare_msg implements XdrAble {
00011 public int txnpcl_id;
00012 public byte [] gid;
00013
00014 public __txn_prepare_msg() {
00015 }
00016
00017 public __txn_prepare_msg(XdrDecodingStream xdr)
00018 throws OncRpcException, IOException {
00019 xdrDecode(xdr);
00020 }
00021
00022 public void xdrEncode(XdrEncodingStream xdr)
00023 throws OncRpcException, IOException {
00024 xdr.xdrEncodeInt(txnpcl_id);
00025 xdr.xdrEncodeOpaque(gid, 128);
00026 }
00027
00028 public void xdrDecode(XdrDecodingStream xdr)
00029 throws OncRpcException, IOException {
00030 txnpcl_id = xdr.xdrDecodeInt();
00031 gid = xdr.xdrDecodeOpaque(128);
00032 }
00033
00034 }
00035