申し訳ありませんが、これに最適なタイトルはわかりません...
私は .NET プログラミングの初心者 (Java のバックグラウンドが少しある) で、単純な型付き処理キューを開発しようとしています。
オブジェクトを最初の ActionQueue に入れます。内部ロジックを介して、単一IAction
の inのみActionQueue
がオブジェクトを処理し、次の にプッシュしますActionQueue
。それぞれがandActionQueue
で支えられています (しかし、それは重要ではありません):Task
BlockingCollection
Object
...
ActionQueue[IPrepare, IPrepare]
...
ActionQueue[IDownload, IDownload]
...
ActionQueue[ISave]
...
ProcessedObject
私が達成しようとしていることは次のとおりです。
ActionQueue
ジェネリックにするため、同じサブインターフェースのみをIActions
ジョブに登録できます(List<T>
アクションを保存するために使用します)- 出力を別の入力
Next
にバインドするプロパティを持つActionQueue
ActionQueue
私の簡略化されたコードは次のようになります。
# SETUP
interface IPrepare: IAction {}
interface IDownload: IAction {}
interface ISave: IAction {}
public interface IActionQueue<in T> where T: IAction {
IActionQueue<IAction> Next {get;set;} # it can be any action queue
void Register(T action);
void Run();
}
class PrepareFromDb : IPrepare {...}
class PrepareFromSettings : IPrepare {...}
class DownloadLocal : IDownload{...}
class DownloadHttp : IDownload{...}
class SaveLocal: ISave {...}
# IN MAIN METHOD
ActionQueue<IPrepare> prepareActions = new ActionQueue<IPrepare>();
prepareActions.Register(new PrepareFromDb(config));
prepareActions.Register(new PrepareFromSettings());
ActionQueue<IDownload> downloadActions = new ActionQueue<IDownload>();
downloadActions.Register(new DownloadLocal());
downloadActions.Register(new DownloadHttp());
ActionQueue<ISave> saveActions = new ActionQueue<ISave>();
saveActions.Register(new SaveLocal(RootPath));
# TRICKY PART THAT FAILS
prepareActions.Next = downloadActions # pass `prepare`d items to `download` queue
downloadActions.Next = saveActions # pass `download`ed items to `save` queue
(note out )IActionQueue
として宣言すると、関数はエラーを表示しませんが、 現在はエラーを表示しています。interface ITrackQueue<out T> where T: ITrackTransformer
Main
void Register(T action)
これは内部ライブラリのコードであり、私が唯一のユーザーであるため、すべての一般的なものを削除してコンパイルできました。しかし、私は常にできるだけ厳密にコーディングするようにしています。
または、ActionQueue
の内部BlockingCollection
キューをNext
プロパティとして使用することもできますが、カプセル化が壊れてしまうため、内部実装を外部に漏らしたくありません。
そこで質問です。これを実装する最もタイプセーフな方法は何ですか?