Interface Distributable
- All Known Subinterfaces:
EventPublisher
,LockService
,ProcessStateService
,QueueProvider
,ReindexQueue<T>
- All Known Implementing Classes:
AbstractDelegatingQueue
,AbstractProcessStateService
,AbstractQueueProvider
,DefaultLocalArrayBlockingDelegatingQueue
,DefaultLocalJvmLockService
,DefaultLocalQueueProvider
,DefaultProcessStateService
public interface Distributable
Interface to indicate if the component is distributable. If so, it is expected to operate
properly across JVM invocations. Distributable components are ones that are generally networked,
or can be accessed or invoked across a network or across JVMs.
- Author:
- Kelly Tisdell (ktisdell)
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Indicates if this component is designed for use across JVMs.
-
Method Details
-
isDistributed
boolean isDistributed()Indicates if this component is designed for use across JVMs.- Returns:
- whether this component can be distributed across JVMs
-