[PluginAttribute(Version = 1, Name = "File converter plugin", Description = "Convert files to specific formats and stores them to the cache card",
ConfigFile = "configuration/FileConverter.xml")]
public sealed class FileConverterPlugin : OperationRunnerPluginBase
<PluginAttribute(Version := 1, Name := "File converter plugin", Description := "Convert files to specific formats and stores them to the cache card",
ConfigFile := "configuration/FileConverter.xml")>
Public NotInheritable Class FileConverterPlugin
Inherits OperationRunnerPluginBase
[PluginAttribute(Version = 1, Name = L"File converter plugin", Description = L"Convert files to specific formats and stores them to the cache card",
ConfigFile = L"configuration/FileConverter.xml")]
public ref class FileConverterPlugin sealed : public OperationRunnerPluginBase
[<SealedAttribute>]
[<PluginAttribute(Version = 1, Name = "File converter plugin", Description = "Convert files to specific formats and stores them to the cache card",
ConfigFile = "configuration/FileConverter.xml")>]
type FileConverterPlugin =
class
inherit OperationRunnerPluginBase
end
FileConverterPlugin | Инициализирует новый экземпляр класса FileConverterPlugin |
CidName |
Уникальное имя компонента для Discovery.
(Унаследован от Plugin) |
DbScope | (Унаследован от OperationRunnerPluginBase) |
DeleteOperation |
Признак того, что операция будет удалена после завершения.
(Переопределяет OperationRunnerPluginBaseDeleteOperation) |
MaxThreads |
Максимальное число потоков параллельной обработки операций плагином.
(Переопределяет OperationRunnerPluginBaseMaxThreads) |
OperationRepository | (Унаследован от OperationRunnerPluginBase) |
OperationTypeID |
Идентификатор типа операции, который обрабатывает плагин.
(Переопределяет OperationRunnerPluginBaseOperationTypeID) |
PollingPeriod |
Период, через который плагин проверяет наличие операций для обработки в режиме ожидания.
(Переопределяет OperationRunnerPluginBasePollingPeriod) |
RecyclePeriod |
Период, через который плагин выполняет перезапуск.
(Переопределяет OperationRunnerPluginBaseRecyclePeriod) |
StopRequested | Признак того, что запрошена остановка плагина. Значение свойства можно изменить только на true. Свойство устанавливается равным true сразу при запрошенной остановке плагина, тогда как CancellationToken, переданный в метод EntryPointAsync(CancellationToken), отменяется за несколько секунд до таймаута плагина, в соответсвии с настройкой AwaitCancellationDeltaSeconds в файле app.json. (Унаследован от Plugin) |
StopRequestedToken |
Токен отмены плагина, который запрашивается сразу при установке свойства StopRequested равным true,
т.е. в момент запроса остановки плагина.
Объект CancellationToken, переданный в метод EntryPointAsync(CancellationToken),
отменяется за несколько секунд до таймаута плагина, в соответсвии с настройкой AwaitCancellationDeltaSeconds в файле app.json.
(Унаследован от Plugin) |
EntryPointAsync |
Асинхронный метод, вызываемый хостом при запуске плагина.
(Переопределяет OperationRunnerPluginBaseEntryPointAsync(CancellationToken)) |
Equals | Determines whether the specified object is equal to the current object. (Унаследован от Object) |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Унаследован от Object) |
GetHashCode | Serves as the default hash function. (Унаследован от Object) |
GetType | Gets the Type of the current instance. (Унаследован от Object) |
InitializePluginAsync |
Метод для инициализации плагина.
(Переопределяет OperationRunnerPluginBaseInitializePluginAsync(IUnityContainer, CancellationToken)) |
MemberwiseClone | Creates a shallow copy of the current Object. (Унаследован от Object) |
ProcessOperationAsync |
Метод для обработки операции.
(Переопределяет OperationRunnerPluginBaseProcessOperationAsync(IOperation, CancellationToken)) |
StopAsync |
Метод, вызываемый хостом при вежливой остановке плагина. Он должен максимально быстро завершить выполнение плагина,
но не завершать свою работу до тех пор, пока потоки, с которыми работает плагин, не будут завершены.
(Переопределяет PluginStopAsync(IPluginStopToken)) |
ToString | Returns a string that represents the current object. (Унаследован от Object) |