The client sends a command to run the executable module that is on the server machine.
Must be in a separate thread to standard output read data in the database.
It seems to be suited for this asynchronous calls. But just disconnect the client cancels the operation.
I must use RCF::ThreadPool.setTask ?
How to perform the work on the server in a separate thread?
Re: How to perform the work on the server in a separate thre
First off, do you really need to run the code on a particular thread? If you are printing information to standard output, you can protect the print calls with a mutex to ensure that they don't interfere with print calls from other threads.
If you do need to execute a remote call on a thread other than the RCF thread that receives the call, you can use asynchronous dispatching, described here:
http://www.deltavsoft.com/doc/rcf_user_ ... ispatching
However, the first option is simpler, if it will work for you.
If you do need to execute a remote call on a thread other than the RCF thread that receives the call, you can use asynchronous dispatching, described here:
http://www.deltavsoft.com/doc/rcf_user_ ... ispatching
However, the first option is simpler, if it will work for you.
Re: How to perform the work on the server in a separate thre
Imagine this situation:jarl wrote:If you do need to execute a remote call on a thread other than the RCF thread that receives the call, you can use asynchronous dispatching, described here:
http://www.deltavsoft.com/doc/rcf_user_ ... ispatching
Code: Select all
class HelloWorldImpl
{
public:
typedef RCF::RemoteCallContext<int, const std::string&> PrintContext;
int Print(const std::string & s)
{
// Capture current remote call context.
PrintContext printContext(RCF::getCurrentRcfSession());
// Create a new thread to dispatch the remote call.
RCF::ThreadPtr threadPtr( new RCF::Thread( boost::bind(
&HelloWorldImpl::threadFunc,
this,
printContext) ) );
return 0;
}
void threadFunc(PrintContext printContext)
{
const std::string & s = printContext.parameters().a1.get();
std::cout << "I_HelloWorld service: " << s << std::endl;
RCF::sleepMs(200000); // <===
printContext.parameters().r.set( s.length() );
printContext.commit();
}
};
int main()
{
...
RCF::RcfServer server( RCF::TcpEndpoint("0.0.0.0", 50001) );
...
server.start();
// remote client call remote method "Print"
server.stop(); // <===
...
}
Re: How to perform the work on the server in a separate thre
Maybe I need to to use "Creating a service"?
http://www.deltavsoft.com/doc/archive/1 ... cture.html
http://www.deltavsoft.com/doc/archive/1 ... cture.html
Re: How to perform the work on the server in a separate thre
Custom services, as described in your link, are no longer supported in RCF.
If you start your own threads from within an RCF server object, you'll need to manage those threads separately from the RcfServer. So before you call RcfServer::stop(), you'll need to call your own code to stop all the custom threads that have been started.
If you start your own threads from within an RCF server object, you'll need to manage those threads separately from the RcfServer. So before you call RcfServer::stop(), you'll need to call your own code to stop all the custom threads that have been started.
Re: How to perform the work on the server in a separate thre
Method "addService" maked as public. Implementation took from PingBackService.jarl wrote:Custom services, as described in your link, are no longer supported in RCF.
Now is the time involved in creation "manage those threads separately from the RcfServer".jarl wrote:If you start your own threads from within an RCF server object, you'll need to manage those threads separately from the RcfServer. So before you call RcfServer::stop(), you'll need to call your own code to stop all the custom threads that have been started.
Re: How to perform the work on the server in a separate thre
Well, doctoring the source code won't make you very popular with our support team 
However, we'll need to find a way to accomplish what you want to do. Is it possible for you to simply use a multi-threaded server?
http://www.deltavsoft.com/doc/rcf_user_ ... _threading
If not, what is it you need, that a multi-threaded server doesn't provide?

However, we'll need to find a way to accomplish what you want to do. Is it possible for you to simply use a multi-threaded server?
http://www.deltavsoft.com/doc/rcf_user_ ... _threading
If not, what is it you need, that a multi-threaded server doesn't provide?
Re: How to perform the work on the server in a separate thre
I use the "RCF" for home use only. Google is my support teamjarl wrote:Well, doctoring the source code won't make you very popular with our support team

I would like to see in the "RCF" is not only an internal thread pool, as well as "Thread Manager".jarl wrote:However, we'll need to find a way to accomplish what you want to do. Is it possible for you to simply use a multi-threaded server?
http://www.deltavsoft.com/doc/rcf_user_ ... _threading
If not, what is it you need, that a multi-threaded server doesn't provide?
That is, to ensure easy generation of "background jobs" that will be executed in individual threads (without thread pool).
Classes boost::thread & boost::thread_groups i do not use (i do not want to compile BOOST).
Now i using RCF::Thread, RCF::Lock, RCF::Condition and etc.