universal
Class StoreResult

java.lang.Object
  |
  +--universal.StoreResult

public class StoreResult
extends java.lang.Object

This object contains the return value by the method propose() of the class Consensus.


Field Summary
 boolean bool
          True if the consensus is successful
 universal.Outcome out
          Contains the (Request, Reply,Update) that is for the position in the total order that the consensus was done for.
 
Constructor Summary
StoreResult(boolean bool, universal.Outcome out)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

bool

public boolean bool
True if the consensus is successful


out

public universal.Outcome out
Contains the (Request, Reply,Update) that is for the position in the total order that the consensus was done for.
If no request has already been processed for this position in the toatal order, it is null.

Constructor Detail

StoreResult

public StoreResult(boolean bool,
                   universal.Outcome out)