-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFlowControlStrategy.h
More file actions
27 lines (21 loc) · 930 Bytes
/
Copy pathFlowControlStrategy.h
File metadata and controls
27 lines (21 loc) · 930 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#pragma once
#include"RxObserver/ObserverEvent.h"
#include"RxObserver/EventResult.h"
#include"RxObserver/Observers.h"
#include"RxObserver/Export.h"
namespace BaseLib { namespace Strategy
{
class DLL_STATE PlayEventsToObservers
: public Templates::StrategyConst4<Concurrent::EventResults, Concurrent::Observers::Ptr, Concurrent::Events, Policy::Computation, Policy::Timeout>
, public Concurrent::StaticStrategyConstFutureFactory4<Concurrent::EventResults, Concurrent::Observers::Ptr, Concurrent::Events, Policy::Computation, Policy::Timeout>
, public StaticSingletonPtr<PlayEventsToObservers>
{
public:
virtual ~PlayEventsToObservers() {}
virtual Concurrent::EventResults Perform(
const Concurrent::Observers::Ptr &observers,
const Concurrent::Events &events,
const Policy::Computation &computation,
const Policy::Timeout &timeout) const;
};
}}