任务命令模式与模式等通知观察器一起使用

任务命令模式与模式等通知观察器一起使用

本文介绍了任务命令模式与模式等通知观察器一起使用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

我正在寻找一种使用通知系统实现任务系统的好方法。

如果有人知道任何好的资源,我可以看一下处理和组合这两种模式。

我很抱歉,我没有任何示例代码,但一旦我知道如何实现我会发布一些代码。



我有三个界面:

IProgram

Attach();

Detatch();

通知();



ITask

执行();



INotify

更新();



一个事件:

NotifyEventArgs



课程:

Notifier

更新()

obserState



AbstractTask

NotifyEvent

执行();



TypesOfTask



FileProgram

GetState()

SetState()

subjectState

I am looking for a good way to implement a Task System with a Notification System.
If anyone is aware of any good resources I can look at for handling and combining both patterns.
I am sorry in advance, I do not have any sample code, but once I have a good idea how implement I will post some code.

I have three interface:
IProgram
Attach();
Detatch();
Notify();

ITask
Execute();

INotify
Update();

one Event:
NotifyEventArgs

Classes:
Notifier
Update()
obserState

AbstractTask
NotifyEvent
Execute();

TypesOfTask

FileProgram
GetState()
SetState()
subjectState

解决方案


这篇关于任务命令模式与模式等通知观察器一起使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-06 13:11