public interface MessageQueueService
PersistedMessageBO| Modifier and Type | Method and Description | 
|---|---|
| void | delete(PersistedMessageBO routeQueue) | 
| List<PersistedMessageBO> | findAll() | 
| List<PersistedMessageBO> | findAll(int maxRows) | 
| PersistedMessagePayload | findByPersistedMessageByRouteQueueId(Long routeQueueId) | 
| PersistedMessageBO | findByRouteQueueId(Long routeQueueId)Finds the PersistedMessageBO identified by the passed-in primary key, if one is
 available, otherwise returns a null object. | 
| List<PersistedMessageBO> | findByServiceName(QName serviceName,
                 String methodName) | 
| List<PersistedMessageBO> | findByValues(Map<String,String> criteriaValues,
            int maxRows)Finds the persisted messages that match the values passed into the 
 criteriaValues Map, with an auto-wildcard function, if no wildcard 
 is passed in. | 
| Integer | getMaxRetryAttempts()Used to determine the maximum number of retries allowed by the system before the 
 message goes into Exception. | 
| List<PersistedMessageBO> | getNextDocuments(Integer maxDocuments)Returns a List of RouteQueue documents which are queued for routing. | 
| void | save(PersistedMessageBO routeQueue) | 
List<PersistedMessageBO> findByServiceName(QName serviceName, String methodName)
void delete(PersistedMessageBO routeQueue)
void save(PersistedMessageBO routeQueue)
List<PersistedMessageBO> findAll()
List<PersistedMessageBO> findAll(int maxRows)
PersistedMessageBO findByRouteQueueId(Long routeQueueId)
routeQueueId - The primary key routeQueueId of the message desired.List<PersistedMessageBO> getNextDocuments(Integer maxDocuments)
PersistedMessagePayload findByPersistedMessageByRouteQueueId(Long routeQueueId)
List<PersistedMessageBO> findByValues(Map<String,String> criteriaValues, int maxRows)
criteriaValues - A Map of Key/Value pairs, where the Key is a string holding the field 
                       name, and the Value is a string holding the value to match.maxRows - the maximum number of rows to return from the query.  If -1, then all rows will be returned.Integer getMaxRetryAttempts()
Copyright © 2005–2016 The Kuali Foundation. All rights reserved.