C ++ POCO-如何在不使用run()方法的情况下在线程池上启动线程?

时间:2018-09-13 09:10:41

标签: c++ multithreading threadpool poco-libraries

C ++ POCO库documentation显示如何使用thread启动thread-pool的方式如下:

#include "Poco/ThreadPool.h"
#include "Poco/Runnable.h"
#include <iostream>
#include <thread>

class Foo : public Poco::Runnable
{
public:
    virtual void run()
    {
        while (true)
        {
            std::cout << "Hello Foo " << std::endl;
            std::this_thread::sleep_for(std::chrono::milliseconds(1000));
        }
    }
};

int main(int argc, char** argv)
{
    Foo foo;
    Poco::ThreadPool::defaultPool().addCapacity(16);
    Poco::ThreadPool::defaultPool().startWithPriority(Poco::Thread::Priority::PRIO_LOW, foo);
    Poco::ThreadPool::defaultPool().joinAll();
    return 0;
}

哪个工作得很好。

但是,现在我想使用相同的class Foo,并通过虚拟方法thread之外的其他方法启动另一个thread-pool(使用相同的run())。

在POCO库上有可能吗?如果是这样,我该怎么办?

类似这样的伪代码:

    #include "Poco/ThreadPool.h"
    #include "Poco/Runnable.h"
    #include <iostream>
    #include <thread>

    class Foo : public Poco::Runnable
    {
    public:
        virtual void run()
        {
            // ERROR: How can I launch this thread on the method anotherThread()?
            Poco::ThreadPool::defaultPool().startWithPriority(Poco::Thread::Priority::PRIO_LOW, anotherThread);

            while (true)
            {
                std::cout << "Hello Foo " << std::endl;
                std::this_thread::sleep_for(std::chrono::milliseconds(1000));
            }
        }

        void anotherThread() // This is the new thread!!
        {
            while (true)
            {
                std::cout << "Hello anotherThread " << std::endl;
                std::this_thread::sleep_for(std::chrono::milliseconds(1000));
            }
        }
    };

    int main(int argc, char** argv)
    {
        Foo foo;
        Poco::ThreadPool::defaultPool().addCapacity(16);
        Poco::ThreadPool::defaultPool().startWithPriority(Poco::Thread::Priority::PRIO_LOW, foo);
        Poco::ThreadPool::defaultPool().joinAll();
        return 0;
    }

1 个答案:

答案 0 :(得分:2)

我很高兴分享答案。

解决方案使用Poco::RunnableAdapter类。

在此情况下,以防其他人发现相同的问题:

#include <Poco/Runnable.h>
#include <Poco/Thread.h>
#include <Poco/ThreadPool.h>
#include <Poco/ThreadTarget.h>
#include <Poco/RunnableAdapter.h>

#include <string>
#include <iostream>

class Foo : public Poco::Runnable
{
public:
    virtual void run()
    {
        std::cout << "  run() start" << std::endl;
        Poco::Thread::sleep(200);
        std::cout << "  run() end" << std::endl;
    }

    void anotherThread()
    {
        std::cout << "  anotherThread() start" << std::endl;
        Poco::Thread::sleep(200);
        std::cout << "  anotherThread() end" << std::endl;
    }
};

int main()
{
    Poco::ThreadPool::defaultPool().addCapacity(16);

    Foo foo;
    Poco::RunnableAdapter<Foo> bar(foo, &Foo::anotherThread);

    Poco::ThreadPool::defaultPool().startWithPriority(Poco::Thread::Priority::PRIO_LOW, foo);
    Poco::ThreadPool::defaultPool().startWithPriority(Poco::Thread::Priority::PRIO_LOW, bar);

    Poco::ThreadPool::defaultPool().joinAll();

    return 0;
}