summaryrefslogtreecommitdiff
path: root/CIAO/performance-tests/Benchmark/Multi_Threaded/Client_Task.cpp
blob: 1bae375bf196bfb2780882e2629aea69c4b96aaf (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
#include "Client_Task.h"

Client_Task::Client_Task (Benchmark::RoundTripClient_ptr roundtrip)
  : roundtrip_(Benchmark::RoundTripClient::_duplicate(roundtrip))
{
}

int
Client_Task::svc (void)
{
  // Create the Controller
  CORBA::Object_var obj = this->roundtrip_->provide_facet ("controller");
  Benchmark::Controller_var controller = Benchmark::Controller::_narrow (obj.in ());

  // Check if controller is non nil
  if (CORBA::is_nil (controller.in ()))
      ACE_ERROR_RETURN ((LM_DEBUG,
                         "Nil Benchmark::Controller reference\n"),
                        1);

  ACE_DEBUG ((LM_DEBUG, "Sending Trigger\n"));

  // Send out the trigger message
  controller->start();

  return 0;
}