Uses of Class
de.zib.scalaris.ErlangValue

Packages that use ErlangValue
de.zib.scalaris This package contains means to communicate with the erlang scalaris ring from Java. 
de.zib.scalaris.examples This package contains examples how to use the classes of the de.zib.scalaris package. 
de.zib.scalaris.executor   
de.zib.scalaris.operations   
 

Uses of ErlangValue in de.zib.scalaris
 

Methods in de.zib.scalaris that return ErlangValue
 ErlangValue KeyChangedException.getOldValue()
          Returns the (old) value stored in scalaris.
 ErlangValue ResultList.processReadAt(int pos)
          Processes the result at the given position which originated from a read request and returns the value that has been read.
 ErlangValue AbstractTransaction.read(OtpErlangString key)
          Gets the value stored under the given key.
 ErlangValue AbstractTransaction.read(String key)
          Gets the value stored under the given key.
 

Methods in de.zib.scalaris that return types with arguments of type ErlangValue
 Collection<ErlangValue> ErlangValue.listCollectionValue(Class<? extends Collection<ErlangValue>> clazz)
          Returns a Collection of mixed Java values (wrapped in ErlangValue objects) of the wrapped erlang value (internally represented as a list in Erlang).
 List<ErlangValue> ErlangValue.listValue()
          Returns a list of mixed Java values (wrapped in ErlangValue objects) of the wrapped erlang value.
 

Methods in de.zib.scalaris with parameters of type ErlangValue
 T ErlangValue.ListElementConverter.convert(int i, ErlangValue v)
          Conversion function.
 String ErlangValue.StringListElementConverter.convert(int i, ErlangValue v)
           
 

Method parameters in de.zib.scalaris with type arguments of type ErlangValue
 Collection<ErlangValue> ErlangValue.listCollectionValue(Class<? extends Collection<ErlangValue>> clazz)
          Returns a Collection of mixed Java values (wrapped in ErlangValue objects) of the wrapped erlang value (internally represented as a list in Erlang).
 

Constructors in de.zib.scalaris with parameters of type ErlangValue
KeyChangedException(ErlangValue old_value)
          Creates the exception with the given old value.
KeyChangedException(Throwable e, ErlangValue old_value)
          Creates the exception with the given old value taking the message of the given throwable.
 

Uses of ErlangValue in de.zib.scalaris.examples
 

Subclasses of ErlangValue in de.zib.scalaris.examples
 class ErlangValueBitString
          Implements a faster String storage mechanism using erlang bitstrings.
 class ErlangValueFastString
          Implements a faster String storage mechanism if only Java access to scalaris is used.
 

Constructors in de.zib.scalaris.examples with parameters of type ErlangValue
ErlangValueBitString(ErlangValue value)
          Creates an object with the given (erlang) value.
ErlangValueFastString(ErlangValue value)
          Creates an object with the given (erlang) value.
 

Uses of ErlangValue in de.zib.scalaris.executor
 

Methods in de.zib.scalaris.executor that return ErlangValue
 ErlangValue ScalarisReadOp.getValue()
          Gets the value from the read.
 

Uses of ErlangValue in de.zib.scalaris.operations
 

Fields in de.zib.scalaris.operations declared as ErlangValue
 ErlangValue ReadRandomFromListOp.Result.randomElement
          A random value from the stored list.
 ErlangValue ReadSublistOp.Result.subList
          The retrieved sublist.
 

Methods in de.zib.scalaris.operations that return ErlangValue
 ErlangValue ReadOp.processResult()
           
 ErlangValue ReadOp.processResultSingle()