Uses of Class
org.apache.mesos.state.Variable

Packages that use Variable
org.apache.mesos.state   
 

Uses of Variable in org.apache.mesos.state
 

Methods in org.apache.mesos.state that return Variable
 Variable Variable.mutate(byte[] value)
          Updates the current value of this variable.
 

Methods in org.apache.mesos.state that return types with arguments of type Variable
 Future<Variable> State.fetch(String name)
          Returns an immutable "variable" representing the current value from the state associated with the specified name.
 Future<Variable> InMemoryState.fetch(String name)
           
 Future<Variable> AbstractState.fetch(String name)
           
 Future<Variable> State.store(Variable variable)
          Returns an immutable "variable" representing the current value in the state if updating the specified variable in the state was successful, otherwise returns null.
 Future<Variable> InMemoryState.store(Variable v)
           
 Future<Variable> AbstractState.store(Variable variable)
           
 

Methods in org.apache.mesos.state with parameters of type Variable
 Future<Boolean> State.expunge(Variable variable)
          Returns true if successfully expunged the variable from the state or false if the variable did not exist or was no longer valid.
 Future<Boolean> InMemoryState.expunge(Variable v)
           
 Future<Boolean> AbstractState.expunge(Variable variable)
           
 Future<Variable> State.store(Variable variable)
          Returns an immutable "variable" representing the current value in the state if updating the specified variable in the state was successful, otherwise returns null.
 Future<Variable> InMemoryState.store(Variable v)
           
 Future<Variable> AbstractState.store(Variable variable)
           
 



Copyright © 2014 The Apache Software Foundation. All Rights Reserved.