blob: 75b122b801de4e64d7610a665e450dc3336edae2 (
plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#include "Stock_Consumer.h"
#include "QuoterC.h"
#include "ace/streams.h"
Stock_Consumer::Stock_Consumer ()
{
}
void
Stock_Consumer::connect (RtecEventChannelAdmin::EventChannel_ptr event_channel,
const RtecEventChannelAdmin::ConsumerQOS &subscriptions)
{
RtecEventChannelAdmin::ConsumerAdmin_var consumer_admin =
event_channel->for_consumers ();
this->supplier_proxy_ =
consumer_admin->obtain_push_supplier ();
RtecEventComm::PushConsumer_var myself = this->_this ();
this->supplier_proxy_->connect_push_consumer (myself.in (),
subscriptions);
}
void
Stock_Consumer::disconnect ()
{
// Do not receive any more events...
this->supplier_proxy_->disconnect_push_supplier ();
}
void
Stock_Consumer::push (const RtecEventComm::EventSet &data)
{
for (CORBA::ULong i = 0; i != data.length (); ++i) {
const RtecEventComm::Event &e = data[i];
const Quoter::Event *event = 0;
if ((e.data.any_value >>= event) == 0)
continue; // Invalid event
cout << "The new price for one stock in \""
<< event->full_name.in ()
<< "\" (" << event->symbol.in ()
<< ") is " << event->price << endl;
}
}
void
Stock_Consumer::disconnect_push_consumer ()
{
this->supplier_proxy_ =
RtecEventChannelAdmin::ProxyPushSupplier::_nil ();
}
|