The number of seconds between cleanups of the inbound directory. The inbound directory is one of the temporary locations where content is stored during the first stage of content upload. A cleanup deletes those files considered abandoned; specifically, those files that have not been committed and are not participating in an existing transaction.

This property works in conjunction with the TempFileLifetime property to determine which files get deleted as part of a periodic cleanup.


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

Syntax

Visual Basic (Declaration)
Property AbandonedContentCleanupInterval As Nullable(Of Integer)
C#
Nullable<int> AbandonedContentCleanupInterval { get; set; }
C++
property Nullable<int> AbandonedContentCleanupInterval abstract  {
    Nullable<int> get();
    void set(Nullable<intvalue);
}
J#
/** property */
public Nullable<int> get_AbandonedContentCleanupInterval();

/** property */
public void set_AbandonedContentCleanupInterval(Nullable<intvalue);
JScript
public function get AbandonedContentCleanupInterval() : Nullable<int>

public function set AbandonedContentCleanupInterval(value : Nullable<int>);

Remarks

See Also