All Downloads are FREE. Search and download functionalities are using the official Maven repository.

akka.stream.alpakka.ironmq.javadsl.CommittableMessage.scala Maven / Gradle / Ivy

/*
 * Copyright (C) since 2016 Lightbend Inc. 
 */

package akka.stream.alpakka.ironmq.javadsl

import java.util.concurrent.CompletionStage

import akka.Done
import akka.stream.alpakka.ironmq.Message

/**
 * Commit an offset that is included in a [[CommittableMessage]].
 */
trait Committable {
  def commit(): CompletionStage[Done]
}

/**
 * A [[Committable]] wrapper around the IronMq [[Message]].
 */
trait CommittableMessage extends Committable {
  def message: Message
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy