Class EmptyMemory
java.lang.Object
org.apache.tinkerpop.gremlin.process.computer.util.EmptyMemory
- All Implemented Interfaces:
Memory,Memory.Admin
- Author:
- Marko A. Rodriguez (http://markorodriguez.com)
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.tinkerpop.gremlin.process.computer.Memory
Memory.Admin, Memory.Exceptions -
Method Summary
Modifier and TypeMethodDescriptionvoidSet the value of the provided key.booleanWhether the key exists in the memory.<R> RGet the value associated with the provided key.intGet the current iteration number.longGet the amount of milliseconds theGraphComputerhas been executing thus far.static EmptyMemoryinstance()keys()The set of keys currently associated with this memory.voidvoidsetIteration(int iteration) voidsetRuntime(long runtime) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.tinkerpop.gremlin.process.computer.Memory
asMap, isInitialIterationMethods inherited from interface org.apache.tinkerpop.gremlin.process.computer.Memory.Admin
incrIteration
-
Method Details
-
instance
-
setIteration
public void setIteration(int iteration) - Specified by:
setIterationin interfaceMemory.Admin
-
setRuntime
public void setRuntime(long runtime) - Specified by:
setRuntimein interfaceMemory.Admin
-
asImmutable
- Specified by:
asImmutablein interfaceMemory.Admin
-
keys
Description copied from interface:MemoryThe set of keys currently associated with this memory. -
get
Description copied from interface:MemoryGet the value associated with the provided key.- Specified by:
getin interfaceMemory- 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
-
set
- Specified by:
setin interfaceMemory- Throws:
IllegalArgumentExceptionIllegalStateException
-
add
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.- Specified by:
addin interfaceMemory- Parameters:
key- they key to set a value forvalue- the value to set for the key- Throws:
IllegalArgumentExceptionIllegalStateException
-
getIteration
public int getIteration()Description copied from interface:MemoryGet the current iteration number.- Specified by:
getIterationin interfaceMemory- Returns:
- the current iteration
-
getRuntime
public long getRuntime()Description copied from interface:MemoryGet the amount of milliseconds theGraphComputerhas been executing thus far.- Specified by:
getRuntimein interfaceMemory- Returns:
- the total time in milliseconds
-
exists
Description copied from interface:MemoryWhether the key exists in the memory.
-