40ecd80e09
from complete.) git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2 542714f4-19e9-0310-aa3c-eee0fc999fb1
57 lines
1.2 KiB
Java
57 lines
1.2 KiB
Java
//
|
|
// $Id: SubscribeRequest.java,v 1.1 2001/05/22 06:08:00 mdb Exp $
|
|
|
|
package com.samskivert.cocktail.cher.net;
|
|
|
|
import java.io.IOException;
|
|
import java.io.DataInputStream;
|
|
import java.io.DataOutputStream;
|
|
|
|
public class SubscribeRequest extends UpstreamMessage
|
|
{
|
|
/** The code for an object subscription request. */
|
|
public static final short TYPE = TYPE_BASE + 1;
|
|
|
|
/**
|
|
* Zero argument constructor used when unserializing an instance.
|
|
*/
|
|
public SubscribeRequest ()
|
|
{
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Constructs a subscribe request for the distributed object with the
|
|
* specified object id.
|
|
*/
|
|
public SubscribeRequest (int oid)
|
|
{
|
|
_oid = oid;
|
|
}
|
|
|
|
public short getType ()
|
|
{
|
|
return TYPE;
|
|
}
|
|
|
|
public void writeTo (DataOutputStream out)
|
|
throws IOException
|
|
{
|
|
super.writeTo(out);
|
|
out.writeInt(_oid);
|
|
}
|
|
|
|
public void readFrom (DataInputStream in)
|
|
throws IOException
|
|
{
|
|
super.readFrom(in);
|
|
_oid = in.readInt();
|
|
}
|
|
|
|
/**
|
|
* The object id of the distributed object to which we are
|
|
* subscribing.
|
|
*/
|
|
protected int _oid;
|
|
}
|