Class RedissonCompletionService<V>

  • Type Parameters:
    V - value type
    All Implemented Interfaces:
    CompletionService<V>

    public class RedissonCompletionService<V>
    extends Object
    implements CompletionService<V>
    A CompletionService that uses a supplied Executor to execute tasks. This class arranges that submitted tasks are, upon completion, placed on a queue accessible using take. The class is lightweight enough to be suitable for transient use when processing groups of tasks.
    Author:
    Nikita Koksharov