Class ImmutableMemory
- java.lang.Object
- 
- org.apache.tinkerpop.gremlin.process.computer.util.ImmutableMemory
 
- 
- All Implemented Interfaces:
- Memory,- Memory.Admin
 
 public final class ImmutableMemory extends Object implements Memory.Admin - Author:
- Marko A. Rodriguez (http://markorodriguez.com)
 
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from interface org.apache.tinkerpop.gremlin.process.computer.MemoryMemory.Admin, Memory.Exceptions
 
- 
 - 
Constructor SummaryConstructors Constructor Description ImmutableMemory(Memory baseMemory)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(String key, Object value)Set the value of the provided key.<R> Rget(String key)Get the value associated with the provided key.intgetIteration()Get the current iteration number.longgetRuntime()Get the amount of milliseconds theGraphComputerhas been executing thus far.voidincrIteration()Set<String>keys()The set of keys currently associated with this memory.voidset(String key, Object value)voidsetIteration(int iteration)voidsetRuntime(long runtime)StringtoString()- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface org.apache.tinkerpop.gremlin.process.computer.MemoryasMap, exists, isInitialIteration
 - 
Methods inherited from interface org.apache.tinkerpop.gremlin.process.computer.Memory.AdminasImmutable
 
- 
 
- 
- 
- 
Constructor Detail- 
ImmutableMemorypublic ImmutableMemory(Memory baseMemory) 
 
- 
 - 
Method Detail- 
keyspublic Set<String> keys() Description copied from interface:MemoryThe set of keys currently associated with this memory.
 - 
getpublic <R> R get(String key) throws IllegalArgumentException Description copied from interface:MemoryGet the value associated with the provided key.- Specified by:
- getin interface- Memory
- Type Parameters:
- R- the type of the value
- Parameters:
- key- the key of the value
- Returns:
- the value
- Throws:
- IllegalArgumentException- is thrown if the key does not exist
 
 - 
getIterationpublic int getIteration() Description copied from interface:MemoryGet the current iteration number.- Specified by:
- getIterationin interface- Memory
- Returns:
- the current iteration
 
 - 
getRuntimepublic long getRuntime() Description copied from interface:MemoryGet the amount of milliseconds theGraphComputerhas been executing thus far.- Specified by:
- getRuntimein interface- Memory
- Returns:
- the total time in milliseconds
 
 - 
addpublic void add(String key, Object value) Description copied from interface:MemorySet the value of the provided key. This is typically called in setup() and/or terminate() of theVertexProgram. If this is called during execute(), there is no guarantee as to the ultimately stored value as call order is indeterminate. It is up to the implementation to determine the states in which this method can be called.
 - 
incrIterationpublic void incrIteration() - Specified by:
- incrIterationin interface- Memory.Admin
 
 - 
setIterationpublic void setIteration(int iteration) - Specified by:
- setIterationin interface- Memory.Admin
 
 - 
setRuntimepublic void setRuntime(long runtime) - Specified by:
- setRuntimein interface- Memory.Admin
 
 
- 
 
-