
public static interface CDOView.Options extends CDOCommonView.Options
view configuration options.| Modifier and Type | Interface and Description |
|---|---|
static interface |
CDOView.Options.CacheReferenceTypeEvent
|
static interface |
CDOView.Options.ChangeSubscriptionPoliciesEvent
|
static interface |
CDOView.Options.DetachmentNotificationEvent
An
options event fired from view options when the
detachment notification enabled option has changed. |
static interface |
CDOView.Options.FeatureAnalyzerEvent
|
static interface |
CDOView.Options.InvalidationNotificationEvent
An
options event fired from view options when the
invalidation notification enabled option has changed. |
static interface |
CDOView.Options.InvalidationPolicyEvent
|
static interface |
CDOView.Options.LoadNotificationEvent
|
static interface |
CDOView.Options.ReferencePolicyEvent
Deprecated.
Use
CDOView.Options.StrongReferencePolicyEvent instead. |
static interface |
CDOView.Options.RevisionPrefetchingPolicyEvent
|
static interface |
CDOView.Options.StaleReferencePolicyEvent
|
static interface |
CDOView.Options.StrongReferencePolicyEvent
|
CDOCommonView.Options.LockNotificationEvent| Modifier and Type | Field and Description |
|---|---|
static int |
DEFAULT_REVISION_PREFETCHING |
static int |
NO_REVISION_PREFETCHING |
isLockNotificationEnabled, setLockNotificationEnabledaddListener, getListeners, hasListeners, removeListenerstatic final int DEFAULT_REVISION_PREFETCHING
static final int NO_REVISION_PREFETCHING
CDOView getContainer()
view of this options object.getContainer in interface IOptionsboolean isLoadNotificationEnabled()
true if the objects in this view will notify their
adapters about the fact that they are loaded,
false otherwise.void setLoadNotificationEnabled(boolean enabled)
objects in this view will notify their
adapters about the fact that they are loaded or not.boolean isDetachmentNotificationEnabled()
true if the objects in this view will notify their
adapters about the fact that they are detached (due to
remote changes), false otherwise.CDONotification.DETACH_OBJECTvoid setDetachmentNotificationEnabled(boolean enabled)
objects in this view will notify their
adapters about the fact that they are detached (due to
remote changes) or not.CDONotification.DETACH_OBJECTboolean isInvalidationNotificationEnabled()
true if the objects in this view will notify their
adapters about the fact that they are invalidated (due to
remote changes), false otherwise.CDOInvalidationNotificationvoid setInvalidationNotificationEnabled(boolean enabled)
objects in this view will notify their
adapters about the fact that they are invalidated (due to
remote changes) or not.CDOInvalidationNotificationCDOInvalidationPolicy getInvalidationPolicy()
void setInvalidationPolicy(CDOInvalidationPolicy policy)
CDOAdapterPolicy[] getChangeSubscriptionPolicies()
change subscription policies.null.addChangeSubscriptionPolicy(CDOAdapterPolicy)void addChangeSubscriptionPolicy(CDOAdapterPolicy policy)
To activate a policy, you must do the following:
view.options().addChangeSubscriptionPolicy(CDOChangeSubscriptionPolicy.ALL);
To register an object, you must add an adapter to the object in which you are interested:
eObject.eAdapters().add(myAdapter);
By activating this feature, each object having at least one adapter that matches the current policy will be registered with the server and will be notified for each change occurring in the scope of any other transaction.
CDOAdapterPolicy.NONE - Ignored.
CDOAdapterPolicy.ALL - Enabled for all adapters used.
CDOAdapterPolicy.CDO - Enabled only for adapters that implement CDOAdapter.
Any other class that implement CDOAdapterPolicy will enable for whatever rules defined in that class.
If myAdapter in the above example matches the current policy, eObject will be
registered with the server and you will receive all changes from other transaction.
When the policy is changed all objects in the cache will automatically be recalculated.
You can subscribe to temporary objects. Even if you cannot receive notifications from other
CDOTransaction for these because they are only local to you, at commit time these objects will be
registered automatically.
void removeChangeSubscriptionPolicy(CDOAdapterPolicy policy)
ReferenceType getCacheReferenceType()
boolean setCacheReferenceType(ReferenceType referenceType)
STRONG,
SOFT or WEAK. If null is passed the default
reference type SOFT is set. If the given reference type does not differ from the one
being currently set the new value is ignored and false is returned. Otherwise existing object
references are converted to the new type and true is returned.CDOAdapterPolicy getStrongReferencePolicy()
void setStrongReferencePolicy(CDOAdapterPolicy policy)
When CDOView.setStrongReference(CDOAdapterPolicy.ALL) is used, it is possible that the target object
will be GC. In that case, the adapter will never received notifications. By Default the value is at
CDOAdapterPolicy.ALL
@Deprecated CDOStaleReferencePolicy getStaleReferenceBehaviour()
getStaleReferencePolicy()@Deprecated void setStaleReferenceBehaviour(CDOStaleReferencePolicy policy)
setStaleReferencePolicy(CDOStaleReferencePolicy)CDOStaleReferencePolicy getStaleReferencePolicy()
void setStaleReferencePolicy(CDOStaleReferencePolicy policy)
CDORevisionPrefetchingPolicy getRevisionPrefetchingPolicy()
void setRevisionPrefetchingPolicy(CDORevisionPrefetchingPolicy prefetchingPolicy)
The difference between the CDOCollectionLoadingPolicy feature and the CDORevisionPrefetchingPolicy feature is subtle. The CDOCollectionLoadingPolicy feature determines how and when to fetch CDOIDs, while the CDORevisionPrefetchingPolicy feature determines how and when to resolve CDOIDs (i.e. fetch the target objects).
view.options().setRevisionPrefetchingPolicy (CDONet4jUtil.createRevisionPrefetchingPolicy(10));
The end-user could provide its own implementation of the CDORevisionPrefetchingPolicy interface.
CDOFeatureAnalyzer getFeatureAnalyzer()
void setFeatureAnalyzer(CDOFeatureAnalyzer featureAnalyzer)
Copyright (c) 2011, 2012 Eike Stepper (Berlin, Germany) and others.