ostore.bloom
Class BloomQuery

java.lang.Object
  |
  +--ostore.bloom.BloomQuery
All Implemented Interfaces:
QueueElementIF, QuickSerializable
Direct Known Subclasses:
BloomWrapper

public abstract class BloomQuery
extends Object
implements QueueElementIF, QuickSerializable

Bloom filter interface used by Tapestry.

Version:
$Id: BloomQuery.java,v 1.7 2002/07/22 20:54:52 srhea Exp $
Author:
Sean C. Rhea

Field Summary
 SecureHash dest
           
 SecureHash id
           
 boolean inbound
           
 TapestryQuery query
           
 TapestryQueryState query_state
           
 SecureHash src
           
 boolean success
          Did the query succeed, or are we at a dead end? Only valid if inbound == true.
 
Constructor Summary
protected BloomQuery()
           
protected BloomQuery(SecureHash dest, SecureHash id, TapestryQuery query, TapestryQueryState query_state)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface ostore.util.QuickSerializable
serialize
 

Field Detail

src

public SecureHash src

dest

public SecureHash dest

query

public TapestryQuery query

query_state

public TapestryQueryState query_state

id

public SecureHash id

inbound

public boolean inbound

success

public boolean success
Did the query succeed, or are we at a dead end? Only valid if inbound == true.
Constructor Detail

BloomQuery

protected BloomQuery()

BloomQuery

protected BloomQuery(SecureHash dest,
                     SecureHash id,
                     TapestryQuery query,
                     TapestryQueryState query_state)