-
public interface ISenderConfig
-
-
Method Summary
Modifier and Type Method Description abstract StringgetEndpointUrl()Gets the url to which payloads will be sent abstract voidsetEndpointUrl(String endpointUrl)Sets the url to which payloads will be sent abstract intgetSenderReadTimeout()Gets the timeout for reading the response from the data collector endpoint abstract voidsetSenderReadTimeout(int senderReadTimeout)Set the timeout for reading the response from the data collector endpoint abstract intgetSenderConnectTimeout()Gets the timeout for connecting to the data collector endpoint abstract voidsetSenderConnectTimeout(int senderConnectTimeout)Set the timeout for connecting to the data collector endpoint -
-
Method Detail
-
getEndpointUrl
abstract String getEndpointUrl()
Gets the url to which payloads will be sent
-
setEndpointUrl
abstract void setEndpointUrl(String endpointUrl)
Sets the url to which payloads will be sent
- Parameters:
endpointUrl- url of the server that receives our data
-
getSenderReadTimeout
abstract int getSenderReadTimeout()
Gets the timeout for reading the response from the data collector endpoint
-
setSenderReadTimeout
abstract void setSenderReadTimeout(int senderReadTimeout)
Set the timeout for reading the response from the data collector endpoint
-
getSenderConnectTimeout
abstract int getSenderConnectTimeout()
Gets the timeout for connecting to the data collector endpoint
-
setSenderConnectTimeout
abstract void setSenderConnectTimeout(int senderConnectTimeout)
Set the timeout for connecting to the data collector endpoint
-
-
-
-