Package org.opentcs.access
Interface LocalKernel
public interface LocalKernel extends Kernel, Lifecycle
Declares the methods the openTCS kernel must provide which are not accessible
to remote peers.
-
Nested Class Summary
-
Field Summary
-
Method Summary
Modifier and Type Method Description void
addKernelExtension(KernelExtension newExtension)
Adds aKernelExtension
to this kernel.void
removeKernelExtension(KernelExtension rmExtension)
Removes aKernelExtension
from this kernel.Methods inherited from interface org.opentcs.components.Lifecycle
initialize, isInitialized, terminate
-
Method Details
-
addKernelExtension
Adds aKernelExtension
to this kernel.- Parameters:
newExtension
- The extension to be added.
-
removeKernelExtension
Removes aKernelExtension
from this kernel.- Parameters:
rmExtension
- The extension to be removed.
-