A boolean value that controls the run enabled status of the dispatcher. When true, the dispatcher runs. When false, the dispatcher does not run.

For the ICFSImportAgentConfiguration interface, when the value of this property is true, the dispatcher runs, but the importer as a whole might still not process import requests when the import agent sub-component has not also been enabled. For more information, see the IsImportAgentEnabled property on the ICFSSiteSettings interface. For a discussion of the importer sub-components, see the ICFSImportAgentConfiguration interface.


Namespace: FileNet.Api.Admin
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Property DispatcherEnabled As Nullable(Of Boolean)
C#
Nullable<bool> DispatcherEnabled { get; set; }
C++
property Nullable<bool> DispatcherEnabled abstract  {
    Nullable<bool> get();
    void set(Nullable<boolvalue);
}
J#
/** property */
public Nullable<bool> get_DispatcherEnabled();

/** property */
public void set_DispatcherEnabled(Nullable<boolvalue);
JScript
public function get DispatcherEnabled() : Nullable<bool>

public function set DispatcherEnabled(value : Nullable<bool>);

Remarks

See Also