Interface StreamingLogSupport
-
public interface StreamingLogSupport
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default HttpURLConnectioncreateLogStreamConnection(Map<String,String> params)default StringgetLogStreamAuthorization()default StringgetLogStreamEndpoint()default reactor.core.publisher.Flux<String>streamingLogs(boolean follow)default reactor.core.publisher.Flux<String>streamingLogs(boolean follow, int tailLines)default reactor.core.publisher.Flux<String>streamingLogs(boolean follow, Map<String,String> p)
-
-
-
Method Detail
-
streamingLogs
default reactor.core.publisher.Flux<String> streamingLogs(boolean follow)
-
streamingLogs
default reactor.core.publisher.Flux<String> streamingLogs(boolean follow, int tailLines)
-
streamingLogs
default reactor.core.publisher.Flux<String> streamingLogs(boolean follow, @Nonnull Map<String,String> p)
-
createLogStreamConnection
@Nonnull default HttpURLConnection createLogStreamConnection(Map<String,String> params) throws IOException, URISyntaxException
- Throws:
IOExceptionURISyntaxException
-
getLogStreamEndpoint
default String getLogStreamEndpoint()
-
getLogStreamAuthorization
default String getLogStreamAuthorization()
-
-