add info optional parameter

This commit is contained in:
Jonathan Leibiusky
2013-02-05 15:55:48 -03:00
parent 9d538a06fd
commit 69f5340aa6
4 changed files with 13 additions and 0 deletions

View File

@@ -648,6 +648,10 @@ public class BinaryClient extends Connection {
public void info() {
sendCommand(INFO);
}
public void info(final String section) {
sendCommand(INFO, section);
}
public void monitor() {
sendCommand(MONITOR);