Solace spring cloud stream support

akg17
akg17 Member Posts: 76

Couple of questions i have

  1. Does solace has compress support for producer ?
    producer:
    compress: true

  2. Does autoBindError Queue is supported only in consumer or producer ?

  3. if i enable error-channel-enabled: true, is there a way to listen to all the error together in one channel,
    and i would be able to drop them back to error queues figuring out the error queues.
     @ServiceActivator(inputChannel="my/default/topic.errors")
     public void handlePublishError(ErrorMessage message) {
         logger.warn("Message Publish Failed for: " + message);
         logger.info("Original Message: " + message.getOriginalMessage());
     } 
  1. useGroupNameInQueueName this is there for only consumer wont create any issue for producer ?
    @marc