We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0b550a commit 3503369Copy full SHA for 3503369
src/main/java/io/reactivesocket/ReactiveSocketFactory.java
@@ -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