Package com.seeq.link.sdk.interfaces
Interface PullDatasourceConnection
- All Superinterfaces:
DatasourceConnectionV2
,IndexingDatasourceConnection
- All Known Subinterfaces:
ConditionPullDatasourceConnection
,SignalPullDatasourceConnection
Implemented by connections that query their datasources on-demand when Seeq requires data.
-
Method Summary
Modifier and TypeMethodDescriptionThe maximum number of sample/capsule requests that will be processed simultaneously.The maximum number of sample/capsule results that can be returned by a request.Methods inherited from interface com.seeq.link.sdk.interfaces.DatasourceConnectionV2
connect, destroy, disconnect, getDatasourceClass, getDatasourceId, getDatasourceName, initialize, monitor, saveConfig
Methods inherited from interface com.seeq.link.sdk.interfaces.IndexingDatasourceConnection
getConfiguration, index
-
Method Details
-
getMaxConcurrentRequests
Integer getMaxConcurrentRequests()The maximum number of sample/capsule requests that will be processed simultaneously. This value will usually come from the connector's configuration file. Return null if you do not wish to impose a limit. -
getMaxResultsPerRequest
Integer getMaxResultsPerRequest()The maximum number of sample/capsule results that can be returned by a request. This value will usually come from the connector's configuration file. Return null if you do not wish to impose a limit.
-