FACT++  1.0
void do_workCB ( )

Definition at line 63 of file rpc_client.cxx.

References dim_print_date_time(), DimRpcInfo::setData(), and sprintf().

64 {
65 // DimRpcInfo *myRpc;
66  Rpc *myRpc;
67  char name[64];
68  int out;
69 
70  sprintf(name,"TESTRPC/INT");
71  myRpc = new Rpc(name);
72 // myRpc = new Rpc(name);
73 
74  out = 1;
75  while(1)
76  {
78  cout << "RPC Sent : " << out << endl;
79  myRpc->setData(out);
80  out++;
81  sleep(5);
82  }
83 }
void setData(void *data, int size)
Definition: dic.hxx:413
void dim_print_date_time()
Definition: utilities.c:134
sprintf(name1,"NewService%d", i)

+ Here is the call graph for this function: