add new constructor to redisscheduler

pull/17/head
yihua.huang 12 years ago
parent 0f2c5b5723
commit f21097421b

@ -29,6 +29,10 @@ public class RedisScheduler implements Scheduler {
pool = new JedisPool(new JedisPoolConfig(), host); pool = new JedisPool(new JedisPoolConfig(), host);
} }
public RedisScheduler(JedisPool pool) {
this.pool = pool;
}
@Override @Override
public synchronized void push(Request request, Task task) { public synchronized void push(Request request, Task task) {
Jedis jedis = pool.getResource(); Jedis jedis = pool.getResource();
@ -59,7 +63,7 @@ public class RedisScheduler implements Scheduler {
} }
String key = ITEM_PREFIX + task.getUUID(); String key = ITEM_PREFIX + task.getUUID();
String field = DigestUtils.shaHex(url); String field = DigestUtils.shaHex(url);
byte[] bytes = jedis.hget(key.getBytes(),field.getBytes()); byte[] bytes = jedis.hget(key.getBytes(), field.getBytes());
if (bytes != null) { if (bytes != null) {
Request o = JSON.parseObject(new String(bytes), Request.class); Request o = JSON.parseObject(new String(bytes), Request.class);
return o; return o;

Loading…
Cancel
Save