public interface BlackboardFactory
Modifier and Type | Method and Description |
---|---|
Blackboard |
createBlackboard(boolean useRecordStorage,
boolean useBinaryStorage)
creates a blackboard.
|
Blackboard |
createPersistingBlackboard()
create a new persisting blackboard instance.
|
Blackboard |
createTransientBlackboard()
create a new non-persisting blackboard instance.
|
Blackboard createBlackboard(boolean useRecordStorage, boolean useBinaryStorage) throws BlackboardAccessException
useRecordStorage
- if true
, the records will be stored using the RecordStorage service.useBinaryStorage
- if true
, the attachments will be stored using the BinaryStorage service.BlackboardAccessException
- could not create the blackboard, or one of the desired services is not available.Blackboard createPersistingBlackboard() throws BlackboardAccessException
BlackboardAccessException
- could not create the blackboard, or no binary storage service is available.Blackboard createTransientBlackboard()