Usage - algorithm type

Since version 1.6.1 JLupinClientQueueUtil has new parameter in it's constructors - JLupinQueueManageResultAlgorithmType. It is enum with definition shown below:

public enum JLupinQueueManageResultAlgorithmType { 
    PERIODICALLY, ON_INPUT_TASK;
}

Below recommendations where developed by tests:

PERIODICALLY

It is beeter for high load of concurent clients, like: audit logs, expectations for high responsivness with many clients, smaller tasks (size of in/out objects).

ON_INPUT_TASK

It is better for low load, like: generating reports for small amount of users.