Select support to pipeline. Thanks to @ib84

This commit is contained in:
ivowiblo
2012-04-17 16:40:54 -04:00
parent be163acd52
commit c9b413c323
2 changed files with 12 additions and 0 deletions

View File

@@ -1226,4 +1226,9 @@ public class Pipeline extends Queable {
client.randomKey();
return getResponse(BuilderFactory.STRING);
}
public Response<String> select(int index){
client.select(index);
return getResponse(BuilderFactory.STRING);
}
}