e55b19726ab07de32a37c988fbb0906543acc5e4
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / Lengthed.java
1 package net.pterodactylus.fcp.quelaton;
2
3 /**
4  * An intermediary interface for FCP commands that require a length parameter.
5  *
6  * @param <R>
7  *      The type of the next command part
8  * @author <a href="mailto:bombe@freenetproject.org">David ‘Bombe’ Roden</a>
9  */
10 public interface Lengthed<R> {
11
12         R length(long length);
13
14 }