Package network.aika
Interface SuspensionHook
-
public interface SuspensionHookThe suspension hook is used to suspend neurons and logic nodes to an external storage in order to reduce the memory footprint. !!! Important: When using the suspension hook, all references to a neuron or a logic node need to occur through a provider. Otherwise the reference might be outdated.- Author:
- Lukas Molzberger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete(String label, int id)Iterable<Integer>getAllNodeIds()intgetNewId()byte[]retrieve(int id)voidstore(int id, String label, Set<String> modelLabels, boolean isNeuron, byte[] data)
-