Spring Operator

Results 417 comments of Spring Operator

**[Gary Russell](https://jira.spring.io/secure/ViewProfile.jspa?name=grussell)** commented Yes; something like that - so that messages with the same timestamp are retrieved in order.

**[Artem Bilan](https://jira.spring.io/secure/ViewProfile.jspa?name=abilan)** commented Good. Shound't we rename then `INT_CHANNEL_MESSAGE` to something like `INT_SIMPLE_MESSAGE_GROUP` and all the respective classes and use them, finally, in the `DelayHandler`? `5.2` theme then?

**[Gary Russell](https://jira.spring.io/secure/ViewProfile.jspa?name=grussell)** commented Perhaps a new table indexed by `RELEASE_DATE` and `SEQUENCE`. Yes, 5.2; I have renamed the backlog.

**[Gary Russell](https://jira.spring.io/secure/ViewProfile.jspa?name=grussell)** commented Bear in mind, though, that this solution is not perfect in that the file could roll over between executions so you could miss some data. But, I...

**[Gary Russell](https://jira.spring.io/secure/ViewProfile.jspa?name=grussell)** commented This is non-trivial - moving to the 4.3 backlog. Issues: - file rollovers - resetting position in the new file - detecting file changes between invocations -...

**[Artem Bilan](https://jira.spring.io/secure/ViewProfile.jspa?name=abilan)** commented Well, looks like that we can just provide `` and even use our `PseudoTransactionManager`

**[Gary Russell](https://jira.spring.io/secure/ViewProfile.jspa?name=grussell)** commented [Alen Turkovic](https://jira.spring.io/secure/ViewProfile.jspa?name=alturkovic) Starting with version 2.1, you can add `Declarables @Beans` which are wrappers for collections of `Declarable`. The admin will automatically detect these beans in the...

**[Gary Russell](https://jira.spring.io/secure/ViewProfile.jspa?name=grussell)** commented In the meantime, it would be easy to subclass the admin... ```java public class ExtendedAdmin extends RabbitAdmin { public ExtendedAdmin(ConnectionFactory connectionFactory) { super(connectionFactory); } public Collection declareQueues(Queue......

**[Alen Turkovic](https://jira.spring.io/secure/ViewProfile.jspa?name=alturkovic)** commented Yes, I was thinking about using the programmatic methods since I have some additional logic, I am already using the `@Beans`, thanks for the tip. Sure, subclassing...

**[Gary Russell](https://jira.spring.io/secure/ViewProfile.jspa?name=grussell)** commented They are private because they have to be executed within the scope of a `RabbitTemplate.execute()` callback so that we have access to a channel. I am not...