Add “with metadata” and “with volatile” flags to ListPeer command
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / ListPeersCommand.java
index 56a28c2..eb366d7 100644 (file)
@@ -12,6 +12,9 @@ import net.pterodactylus.fcp.Peer;
  */
 public interface ListPeersCommand {
 
+       ListPeersCommand includeMetadata();
+       ListPeersCommand includeVolatile();
+
        Future<Collection<Peer>> execute();
 
 }