Package io.dapr.utils
Class NetworkUtils
java.lang.Object
io.dapr.utils.NetworkUtils
Utility methods for network, internal to Dapr SDK.
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
waitForSocket(String host, int port, int timeoutInMilliseconds)
Tries to connect to a socket, retrying every 1 second.
-
Method Details
-
waitForSocket
public static void waitForSocket(String host, int port, int timeoutInMilliseconds) throws InterruptedExceptionTries to connect to a socket, retrying every 1 second.- Parameters:
host
- Host to connect to.port
- Port to connect to.timeoutInMilliseconds
- Timeout in milliseconds to give up trying.- Throws:
InterruptedException
- If retry is interrupted.
-