
org.swisspush.redisques.handler.GetAllLocksHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vertx-redisques Show documentation
Show all versions of vertx-redisques Show documentation
A highly scalable redis-persistent queuing system for vertx
package org.swisspush.redisques.handler;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
import io.vertx.core.eventbus.Message;
import io.vertx.core.json.JsonArray;
import io.vertx.core.json.JsonObject;
import static org.swisspush.redisques.util.RedisquesAPI.*;
import java.util.List;
/**
* Class GetAllLocksHandler.
*
* @author baldim
*/
public class GetAllLocksHandler implements Handler> {
private Message event;
public GetAllLocksHandler(Message event) {
this.event = event;
}
@Override
public void handle(AsyncResult reply) {
if(reply.succeeded()){
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy