Package adams.flow.standalone.rats
Class WSMultiSpectrumReception
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.flow.standalone.rats.input.AbstractRatInput
-
- adams.flow.standalone.rats.WSMultiSpectrumReception
-
- All Implemented Interfaces:
adams.core.AdditionalInformationHandler,adams.core.CleanUpHandler,adams.core.Destroyable,adams.core.GlobalInfoSupporter,adams.core.logging.LoggingLevelHandler,adams.core.logging.LoggingSupporter,adams.core.option.OptionHandler,adams.core.QuickInfoSupporter,adams.core.ShallowCopySupporter<adams.flow.standalone.rats.input.AbstractRatInput>,adams.core.SizeOfHandler,adams.core.Stoppable,adams.core.StoppableWithFeedback,adams.flow.standalone.rats.input.RatInput,Serializable
public class WSMultiSpectrumReception extends adams.flow.standalone.rats.input.AbstractRatInputUses a webservice for retrieving spectra. Internally polls whether data has arrived.
-logging-level <OFF|SEVERE|WARNING|INFO|CONFIG|FINE|FINER|FINEST> (property: loggingLevel) The logging level for outputting errors and debugging output. default: WARNING
-web-service <adams.flow.webservice.WebServiceProvider> (property: webService) The webservice provider to use. default: knir.flow.webservice.RatsServiceWS -implementation knir.flow.webservice.RatsService
-wait-poll <int> (property: waitPoll) The number of milli-seconds to wait before polling again whether data has arrived. default: 50 minimum: 0
- Version:
- $Revision: 2090 $
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<MultiSpectrum>m_Datathe spectrum received via webservice.protected intm_WaitPollthe waiting period in msec before polling again.protected adams.flow.webservice.WebServiceProviderm_WebServicethe webservice to run.
-
Constructor Summary
Constructors Constructor Description WSMultiSpectrumReception()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcleanUp()Cleans up data structures, frees up memory.voiddefineOptions()Adds options to the internal list of options.protected StringdoReceive()Performs the actual reception of data.Classgenerates()Returns the type of data this scheme generates.protected adams.flow.webservice.WebServiceProvidergetDefaultWebService()Returns the default webservice provider to use.intgetWaitPoll()Returns the number of milli-seconds to wait before polling again whether data has arrived.adams.flow.webservice.WebServiceProvidergetWebService()Returns the webservice provider in use.StringglobalInfo()Returns a string describing the object.booleanhasPendingOutput()Checks whether any output can be collected.protected voidinitialize()Initializes the members.Objectoutput()Returns the received data.voidsetData(MultiSpectrum value)For setting the data received from the webservice.voidsetWaitPoll(int value)Sets the number of milli-seconds to wait before polling whether data has arrived.voidsetWebService(adams.flow.webservice.WebServiceProvider value)Sets the webservice provider to use.voidstopExecution()Stops the execution.StringwaitPollTipText()Returns the tip text for this property.StringwebServiceTipText()Returns the tip text for this property.-
Methods inherited from class adams.flow.standalone.rats.input.AbstractRatInput
canReceive, check, configureLogger, doWait, getAdditionalInformation, getFullName, getOwner, getQueue, getQuickInfo, getReceptionInterrupted, handleException, initReception, interruptReception, isReceptionRunning, isStopped, receive, setOwner, setUp, shallowCopy, shallowCopy, updatePrefix
-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, destroy, finishInit, getDefaultLoggingLevel, getOptionManager, loggingLevelTipText, newOptionManager, reset, setLoggingLevel, toCommandLine, toString
-
Methods inherited from class adams.core.logging.LoggingObject
getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
-
-
-
Field Detail
-
m_WebService
protected adams.flow.webservice.WebServiceProvider m_WebService
the webservice to run.
-
m_Data
protected List<MultiSpectrum> m_Data
the spectrum received via webservice.
-
m_WaitPoll
protected int m_WaitPoll
the waiting period in msec before polling again.
-
-
Method Detail
-
globalInfo
public String globalInfo()
Returns a string describing the object.- Specified by:
globalInfoin interfaceadams.core.GlobalInfoSupporter- Specified by:
globalInfoin classadams.core.option.AbstractOptionHandler- Returns:
- a description suitable for displaying in the gui
-
defineOptions
public void defineOptions()
Adds options to the internal list of options.- Specified by:
defineOptionsin interfaceadams.core.option.OptionHandler- Overrides:
defineOptionsin classadams.core.option.AbstractOptionHandler
-
initialize
protected void initialize()
Initializes the members.- Overrides:
initializein classadams.flow.standalone.rats.input.AbstractRatInput
-
getDefaultWebService
protected adams.flow.webservice.WebServiceProvider getDefaultWebService()
Returns the default webservice provider to use.- Returns:
- the default provider
-
setWebService
public void setWebService(adams.flow.webservice.WebServiceProvider value)
Sets the webservice provider to use.- Parameters:
value- the provider
-
getWebService
public adams.flow.webservice.WebServiceProvider getWebService()
Returns the webservice provider in use.- Returns:
- the provider
-
webServiceTipText
public String webServiceTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
setWaitPoll
public void setWaitPoll(int value)
Sets the number of milli-seconds to wait before polling whether data has arrived.- Parameters:
value- the number of milli-seconds
-
getWaitPoll
public int getWaitPoll()
Returns the number of milli-seconds to wait before polling again whether data has arrived.- Returns:
- the number of milli-seconds
-
waitPollTipText
public String waitPollTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
generates
public Class generates()
Returns the type of data this scheme generates.- Specified by:
generatesin interfaceadams.flow.standalone.rats.input.RatInput- Specified by:
generatesin classadams.flow.standalone.rats.input.AbstractRatInput- Returns:
- the type of data
-
setData
public void setData(MultiSpectrum value)
For setting the data received from the webservice.- Parameters:
value- the data received
-
hasPendingOutput
public boolean hasPendingOutput()
Checks whether any output can be collected.- Specified by:
hasPendingOutputin interfaceadams.flow.standalone.rats.input.RatInput- Specified by:
hasPendingOutputin classadams.flow.standalone.rats.input.AbstractRatInput- Returns:
- true if output available
-
output
public Object output()
Returns the received data.- Specified by:
outputin interfaceadams.flow.standalone.rats.input.RatInput- Specified by:
outputin classadams.flow.standalone.rats.input.AbstractRatInput- Returns:
- the data
-
doReceive
protected String doReceive()
Performs the actual reception of data.- Specified by:
doReceivein classadams.flow.standalone.rats.input.AbstractRatInput- Returns:
- null if successful, otherwise error message
-
stopExecution
public void stopExecution()
Stops the execution.- Specified by:
stopExecutionin interfaceadams.flow.standalone.rats.input.RatInput- Specified by:
stopExecutionin interfaceadams.core.Stoppable- Overrides:
stopExecutionin classadams.flow.standalone.rats.input.AbstractRatInput
-
cleanUp
public void cleanUp()
Cleans up data structures, frees up memory.- Specified by:
cleanUpin interfaceadams.core.CleanUpHandler- Overrides:
cleanUpin classadams.flow.standalone.rats.input.AbstractRatInput
-
-