de.otto.synapse.compaction.s3.SnapshotMessageDecoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of synapse-compaction-aws-s3 Show documentation
Show all versions of synapse-compaction-aws-s3 Show documentation
S3 implementation of Synapse compaction.
package de.otto.synapse.compaction.s3;
import de.otto.synapse.message.TextMessage;
import de.otto.synapse.translator.AbstractTextDecoder;
public class SnapshotMessageDecoder extends AbstractTextDecoder {
@Override
public TextMessage apply(final SnapshotMessage snapshotMessage) {
return decode(snapshotMessage.getKey(), snapshotMessage.getHeader(), snapshotMessage.getPayload());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy