Rename FcpReplySequence to FcpDialog
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / ListPeersCommand.java
index 56a28c2..579487f 100644 (file)
@@ -10,8 +10,9 @@ import net.pterodactylus.fcp.Peer;
  *
  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
  */
-public interface ListPeersCommand {
+public interface ListPeersCommand extends Executable<Collection<Peer>> {
 
-       Future<Collection<Peer>> execute();
+       ListPeersCommand includeMetadata();
+       ListPeersCommand includeVolatile();
 
 }