Adds TODO

This commit is contained in:
Spencer Gibb
2017-10-31 00:04:19 -04:00
parent 64cf2678bd
commit 5bff2b22b3

View File

@@ -6,6 +6,7 @@ import reactor.core.publisher.Mono;
* @author Spencer Gibb
*/
public interface RateLimiter {
//TODO: move ints to tuple
Mono<Response> isAllowed(String id, int replenishRate, int burstCapacity);
class Response {