• APIブラウザ
  • 設計思想
Show / Hide Table of Contents
  • ExapisSOP
    • AppWorker
    • ContextEventArgs
    • HostRunner
    • IConfiguration
    • IContext
    • IPipeline
    • IProcess
    • IProcess<TParam, TResult>
    • IService
    • TerminationEventArgs
    • TerminationException
    • TerminationReason
    • UnhandledErrorEventArgs
    • VersionInfo
  • ExapisSOP.Binary
    • DataValue
  • ExapisSOP.Core
    • ConfigurationExtensions
    • ContextExtensions
    • CustomPipelineProcess<TParam, TResult>
    • ImmutablePipeline
    • Pipeline
    • PipelineExtensions
    • PipelineExtensions.ExceptionHandler
    • PipelineExtensions.ExceptionHandler<TParam, TResult>
    • PipelineExtensions.LoggingProcess
    • PipelineExtensions.NextProcessFunc
    • PipelineExtensions.ProcessFunc
    • PipelineExtensions.ProcessFunc<TParam, TResult>
    • PipelineExtensions.ProcessFuncWrapper
    • PipelineExtensions.ProcessFuncWrapper<TParam, TResult>
  • ExapisSOP.Globalization
    • EnglishErrorReportBuilder
    • JapaneseErrorReportBuilder
  • ExapisSOP.IO
    • CachedStream
    • DefaultPath
    • FileSystemServiceOptions
    • FileSystemServiceOptionsExtensions
    • IFileSystemService
    • InvalidPathFormatException
    • IPathList
    • Paths
    • PathString
    • PathStringFormatter
  • ExapisSOP.IO.Logging
    • ConsoleLogger
    • DefaultErrorDetailProvider
    • ErrorReportBuilder
    • ExceptionRecord
    • HResultDetailProvider
    • ICustomErrorDetailProvider
    • ILogFile
    • ILoggable
    • ILogger
    • ILoggingSystemService
    • LogData
    • LogFile
    • LogFileType
    • Logger
    • LoggerExtension
    • LoggingSystemServiceOptions
    • LoggingSystemServiceOptions.CreateLogFile
    • LogLevel
    • LongMessageRecord
    • MultipleLogger
    • OutputStreamLogger
  • ExapisSOP.IO.Settings
    • CustomSettings
    • DataStore
    • DefaultSettings
    • EnvironmentSettings
    • ISettingsSystemService
    • OptimizedSettings
    • SettingsSystemServiceOptions
    • SettingsSystemServiceOptions.ConfirmVersionInfo
    • SettingsSystemServiceOptions.GetVersionInfo
  • ExapisSOP.IO.Settings.CommandLine
    • CommandLineConverter
    • CommandLineParser
    • CommandLineServiceOptions
    • CommandLineServiceOptions.CreateConverterMappingTable
    • FileNameList
    • IArgumentConverter
    • IArgumentConverter<T>
    • ICommandLineService
    • ManualAttribute
    • Option
    • Option.Value
    • OptionAttribute
    • Switch
    • SwitchAttribute
  • ExapisSOP.NativeWrapper
    • INativeCaller
    • WinAPI
  • ExapisSOP.NativeWrapper.Windows
    • Kernel32
  • ExapisSOP.Numerics
    • CryptionRandom
    • IRandom
    • LinearCongruentialGenerator
    • RandomExtension
    • SerializableRandom
    • SystemRandom
    • Xorshift
    • Xorshift2
  • ExapisSOP.Text
    • SimpleEncoding
    • SimpleString
  • ExapisSOP.Utils
    • ArrayExtensions
    • ConsoleUtil
    • DisposableBase
    • IAwaitable<T>
    • IAwaiter<T>
    • IUtilityService
    • SecureStringExtensions
    • SerializationInfoExtensions
    • StringExtensions
    • StringUtil
    • UtilityConfigurationExtensions
    • UtilityContextExtensions

CustomPipelineProcess<TParam, TResult> クラス

IPipelineで実行される処理を表します。 このクラスは抽象クラスです。

継承
System.Object
CustomPipelineProcess<TParam, TResult>
PipelineExtensions.ExceptionHandler
PipelineExtensions.ExceptionHandler<TParam, TResult>
PipelineExtensions.ProcessFuncWrapper
PipelineExtensions.ProcessFuncWrapper<TParam, TResult>
実装
IProcess<TParam, TResult>
IProcess
継承されたメンバー
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
名前空間: ExapisSOP.Core
アセンブリ: ExapisSOP.dll
構文
public abstract class CustomPipelineProcess<TParam, TResult> : IProcess<TParam, TResult>, IProcess
型引数
名前 説明
TParam

この処理の引数の種類です。

TResult

この処理の戻り値の種類です。

コンストラクタ 一覧

| 編集/提案 ソースを表示

CustomPipelineProcess()

型'CustomPipelineProcess<TParam, TResult>'の新しいインスタンスを生成します。

宣言
protected CustomPipelineProcess()

プロパティ 一覧

| 編集/提案 ソースを表示

IsExecutable

上書きされた場合、この処理が実行可能な状態かどうかを表す論理値を取得します。

宣言
public abstract bool IsExecutable { get; }
プロパティ値
型 説明
System.Boolean
脚注

この値がfalseになった場合はInit(IContext)を呼び出さなければなりません。

| 編集/提案 ソースを表示

NextProcess

この処理の次に実行すべき処理を取得または設定します。

宣言
public IProcess NextProcess { get; set; }
プロパティ値
型 説明
IProcess

メソッド 一覧

| 編集/提案 ソースを表示

Init(IContext)

上書きされた場合、この処理を実行可能な状態に初期化します。 IsExecutableをtrueに設定します。

宣言
public void Init(IContext context)
引数
型 名前 説明
IContext context

現在の文脈情報です。

| 編集/提案 ソースを表示

InvokeAsync(IContext, TParam)

この処理の実行を非同期的に開始します。

宣言
public IAwaitable<TResult> InvokeAsync(IContext context, TParam arg)
引数
型 名前 説明
IContext context

実行に必要な文脈情報です。

TParam arg

処理に必要な引数です。

戻り値
型 説明
IAwaitable<TResult>

戻り値を含むこの処理を表す非同期操作です。

例外
型 条件
System.InvalidOperationException

IsExecutableがfalseの時に発生します。

| 編集/提案 ソースを表示

InvokeCore(IContext, TParam)

この処理の実行を非同期的に開始します。

宣言
protected abstract Task<TResult> InvokeCore(IContext context, TParam arg)
引数
型 名前 説明
IContext context

実行に必要な文脈情報です。

TParam arg

処理に必要な引数です。

戻り値
型 説明
System.Threading.Tasks.Task<TResult>

戻り値を含むこの処理を表す非同期操作です。

明示的なインターフェース実装 一覧

| 編集/提案 ソースを表示

IProcess.InvokeAsync(IContext, Object)

宣言
Task<object> IProcess.InvokeAsync(IContext context, object arg)
引数
型 名前 説明
IContext context
System.Object arg
戻り値
型 説明
System.Threading.Tasks.Task<System.Object>

実装

IProcess<TParam, TResult>
IProcess
  • 編集/提案
  • ソースを表示
Back to top Generated by DocFX