Date: prev next · Thread: first prev next last
2015 Archives by date, by thread · List index


Hi,

On Mon, Jul 20, 2015 at 7:02 PM, Pranav Kant <pranav913@gmail.com> wrote:
I am making use of thread pool, but this pool consists of only single
thread. All the LOK calls will be queued and can reuse this thread,
hence saving me the time that it would take to create a new thread
(expensive process) for each LOK call.

This was the reason behind making use of thread pool. I had no
intention of using more than one thread for LOK calls.

You can create only one thread on start and put the processing of
async queue in a loop there:

while (message = async_queue.pop())
{
...process message...
}

from other thread just push the messages that you want to process in
the other thread into the queue (btw. this is what is done in Android
implementation).

The queue will block if you "pop" and there are no messages in th
queue - which means the thread will sleep until a new message arrives.

Look at: https://developer.gnome.org/glib/stable/glib-Asynchronous-Queues.html

As you can see the thread pool uses it also - but using thread pool
with only one thread is kind of a hack to me, but it works too..

Regards,
Pranav Kant
http://pranavk.me

Context


Privacy Policy | Impressum (Legal Info) | Copyright information: Unless otherwise specified, all text and images on this website are licensed under the Creative Commons Attribution-Share Alike 3.0 License. This does not include the source code of LibreOffice, which is licensed under the Mozilla Public License (MPLv2). "LibreOffice" and "The Document Foundation" are registered trademarks of their corresponding registered owners or are in actual use as trademarks in one or more countries. Their respective logos and icons are also subject to international copyright laws. Use thereof is explained in our trademark policy.