Class JdbcQueryListener

All Implemented Interfaces:
HasPhysicalDestination, IConfigurable, IConfigurationAware, IHasProcessState, IListener, INamedObject, IPeekableListener, IPullingListener, IScopeProvider, IXAEnabled, org.springframework.beans.factory.Aware, org.springframework.context.ApplicationContextAware

@Deprecated @ConfigurationWarning("Please replace with JdbcTableListener for ease of configuration and improved manageability") public class JdbcQueryListener extends JdbcListener
Deprecated.
/** Database Listener that operates on a table having at least a key and a status field.
Since:
4.7
  • Constructor Details

    • JdbcQueryListener

      public JdbcQueryListener()
      Deprecated.
  • Method Details

    • configure

      public void configure() throws ConfigurationException
      Deprecated.
      Description copied from interface: IListener
      configure() is called once at startup of the framework in the configure() method of the owner of this listener. Purpose of this method is to reduce creating connections to databases etc. in the IPullingListener.getRawMessage(Map) method. As much as possible class-instantiating should take place in the configure() or open() method, to improve performance.
      Specified by:
      configure in interface IConfigurable
      Specified by:
      configure in interface IListener
      Overrides:
      configure in class JdbcListener
      Throws:
      ConfigurationException
    • setSelectQuery

      public void setSelectQuery(String string)
      Deprecated.
      Query that returns a row to be processed. Must contain a key field and optionally a message field.
      Overrides:
      setSelectQuery in class JdbcListener
    • setUpdateStatusToProcessedQuery

      public void setUpdateStatusToProcessedQuery(String query)
      Deprecated.
      SQL statement to set the status of a row to 'processed'. Must contain one parameter, that is set to the value of the key
    • setUpdateStatusToErrorQuery

      public void setUpdateStatusToErrorQuery(String query)
      Deprecated.
      SQL statement to set the status of a row to 'error'. Must contain one parameter, that is set to the value of the key
      Default value
      same as updateStatusToProcessedQuery
    • setUpdateStatusToInProcessQuery

      public void setUpdateStatusToInProcessQuery(String query)
      Deprecated.
      SQL statement to set the status of a row to 'in process'. Must contain one parameter, that is set to the value of the key. Can be left emtpy if database has SKIP LOCKED functionality and the Receiver can be (and is) set to Required or RequiresNew.
    • setRevertInProcessStatusQuery

      public void setRevertInProcessStatusQuery(String query)
      Deprecated.
      SQL statement to set the status of a row to 'available'. Must contain one parameter, that is set to the value of the key. Only used in rollbacks, when updateStatusToInProcessQuery is specified