Click or drag to resize
AbstractFileSystemProgressLoggingJob Class
Abstract class incorporating logging of job's progress.
Inheritance Hierarchy

Namespace: CMS.ContinuousIntegration.Internal
Assembly: CMS.ContinuousIntegration (in CMS.ContinuousIntegration.dll) Version: 10.0.0
Syntax
C#
public abstract class AbstractFileSystemProgressLoggingJob : AbstractFileSystemJob

The AbstractFileSystemProgressLoggingJob type exposes the following members.

Properties
  NameDescription
Protected propertyRepositoryConfiguration
Gets the current instance of repository configuration
(Inherited from AbstractFileSystemJob.)
Protected propertyRepositoryPathHelper
Object for working with file paths in file system repository.
(Inherited from AbstractFileSystemJob.)
Protected propertyTranslationHelper
Provides object translation. Used in serialization to optimize database calls.
(Inherited from AbstractFileSystemJob.)
Protected propertyUseFileMetadata
Indicates whether objects' file meta-data are used or not (see FileMetadataInfo).
(Inherited from AbstractFileSystemJob.)
Top
Methods
  NameDescription
Protected methodCancellableForEachT(CancellationToken, IEnumerableT, ActionT)
Enumerates through collection checking cancellationToken before each iteration and performing action on each item in the collection.
(Inherited from AbstractFileSystemJob.)
Protected methodCancellableForEachT(CancellationToken, IEnumerableT, ActionT, Int32)
Enumerates through collection checking cancellationToken before each iteration and performing action on each item in the collection.
(Inherited from AbstractFileSystemJob.)
Protected methodStatic memberGetLogObjectName(BaseInfo)
Gets display name or code name or GUID or ID of provided info.
Protected methodStatic memberGetLogObjectName(ObjectTypeInfo, BaseInfo)
Gets display name or code name or GUID or ID of provided info.
Protected methodGetNewJobWithSharedResourcesTJob
Gets new job of TJob using factoryJobGetter and initializes it with all properties used in InitializeWith``1(UMP, RepositoryPathHelper, ContinuousIntegrationTranslationHelper, FileSystemBindingsProcessor, IFileSystemWriter, ICachedFileSystemReader, SeparatedFieldProcessor, NullableBoolean, NullableBoolean) of the job calling this method.
(Inherited from AbstractFileSystemJob.)
Protected methodGetNewJobWithSharedResourcesAndHandlersTJob
Gets new job of TJob using factoryJobGetter and initializes it with all properties used in InitializeWith``1(UMP, RepositoryPathHelper, ContinuousIntegrationTranslationHelper, FileSystemBindingsProcessor, IFileSystemWriter, ICachedFileSystemReader, SeparatedFieldProcessor, NullableBoolean, NullableBoolean) and registers all handlers using SetLogProgressHandler``1(UMP, EventHandlerLogProgressEventArgs) of the job calling this method.
Protected methodCheckContinuousIntegrationLicense
Check license requirement for Continuous Integration and throws LicenseException if they are not met.
(Inherited from AbstractFileSystemJob.)
Protected methodInitializeCancellationToken
If provided cancellationToken is not null, the token is used; otherwise, new CancellationToken is created so as the derived class does not need to -checked each token's use.
(Inherited from AbstractFileSystemJob.)
Protected methodRaiseLogProgress(LogItem)
Logs message to progress log.
Protected methodRaiseLogProgress(String, LogItemTypeEnum, LogItemActionTypeEnum)
Logs message to progress log.
Protected methodRegisterTranslationRecord
Registers a new translation record into TranslationHelper.
(Inherited from AbstractFileSystemJob.)
Top
Remarks
This class is not intended for inheritance. Non-abstract jobs are supposed to be used for behavioral amendments.
See Also