tapestry.ptr.impl.dht
Class DhtRemoveResp

java.lang.Object
  |
  +--tapestry.ptr.impl.dht.DhtResp
        |
        +--tapestry.ptr.impl.dht.DhtRemoveResp
All Implemented Interfaces:
QueueElementIF

public class DhtRemoveResp
extends DhtResp

DhtRemoveResp is the event returned in response to a DhtPutReq indicating the success of each individual store request.

Version:
$Id: DhtRemoveResp.java,v 1.1.1.1 2004/03/26 19:57:11 hweather Exp $
Author:
Hakim Weatherspoon

Field Summary
 SecureHash[] objguids
          Array of objguids to remove from DHT.
 boolean[] success
          Array to indicating the success of each DHT removal request.
 
Fields inherited from class tapestry.ptr.impl.dht.DhtResp
appId, userData
 
Constructor Summary
DhtRemoveResp(SecureHash[] o, boolean[] s, long a, Object u)
          Constructor: Creates a new DhtRemoveResp.
DhtRemoveResp(SecureHash o, boolean s, long a, Object u)
          Constructor: Creates a new DhtRemoveResp.
 
Method Summary
 String toString()
          Specified by java.lang.Object
 
Methods inherited from class tapestry.ptr.impl.dht.DhtResp
BUG
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

objguids

public SecureHash[] objguids
Array of objguids to remove from DHT.


success

public boolean[] success
Array to indicating the success of each DHT removal request.

Constructor Detail

DhtRemoveResp

public DhtRemoveResp(SecureHash[] o,
                     boolean[] s,
                     long a,
                     Object u)
Constructor: Creates a new DhtRemoveResp.

Parameters:
o - objguids to remove from DHT
s - Array indicating success of each DHT removal request.
a - Unique identifier for a destination application.
u - Requestor defined object to be returned in the resp.

DhtRemoveResp

public DhtRemoveResp(SecureHash o,
                     boolean s,
                     long a,
                     Object u)
Constructor: Creates a new DhtRemoveResp.

Parameters:
o - objguid to remove from DHT
s - Array indicating success of each DHT removal request.
a - Unique identifier for a destination application.
u - Requestor defined object to be returned in the resp.
Method Detail

toString

public String toString()
Specified by java.lang.Object

Specified by:
toString in class DhtResp