Add Binary Pipeline version of pfcount

This commit is contained in:
Jungtaek Lim
2014-04-30 08:17:59 +09:00
parent 219f9b3716
commit 6485a7ec08
2 changed files with 8 additions and 0 deletions

View File

@@ -464,4 +464,10 @@ abstract class MultiKeyPipelineBase extends PipelineBase implements
client.pfcount(keys);
return getResponse(BuilderFactory.LONG);
}
@Override
public Response<Long> pfcount(final byte[] ... keys) {
client.pfcount(keys);
return getResponse(BuilderFactory.LONG);
}
}