Skip to content

Commit 3503369

Browse files
committed
Added ReactiveSocketFactory interface
1 parent a0b550a commit 3503369

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package io.reactivesocket;
2+
3+
import org.reactivestreams.Publisher;
4+
5+
import java.net.SocketAddress;
6+
import java.util.concurrent.TimeUnit;
7+
8+
@FunctionalInterface
9+
public interface ReactiveSocketFactory {
10+
Publisher<ReactiveSocket> call(SocketAddress address, long timeout, TimeUnit timeUnit);
11+
}

0 commit comments

Comments
 (0)