1 #include "TestServer.h"
4 TestServer::pass_callback (Test::TestCallback_ptr test
)
6 // Save the callback object
7 callback_
= Test::TestCallback::_duplicate(test
);
9 // Start worker threads on the client: this call won't come back
10 callback_
->start_threads_and_block();
14 TestServer::got_callback ()
16 return (callback_
.in() != 0);
20 TestServer::make_callback ()
22 callback_
->test_call();
26 TestServer::shutdown_client ()
28 callback_
->shutdown();