fix unmoored doc comment in SequencedMessage (#28730)

* failing nightly publish
* becomes compilation error when publishLocal
This commit is contained in:
Patrik Nordwall 2020-03-13 10:38:10 +01:00 committed by GitHub
parent c733a09332
commit ad0f19a694
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -131,9 +131,10 @@ object ConsumerController {
* In the future we may also make the custom `send` in `ProducerController` public to make it possible to * In the future we may also make the custom `send` in `ProducerController` public to make it possible to
* wrap it or send it in other ways when building higher level abstractions that are using the `ProducerController`. * wrap it or send it in other ways when building higher level abstractions that are using the `ProducerController`.
* That is used by `ShardingProducerController`. * That is used by `ShardingProducerController`.
*
* @param producerController INTERNAL API: construction of SequencedMessage is internal
*/ */
final case class SequencedMessage[A](producerId: String, seqNr: SeqNr, message: A, first: Boolean, ack: Boolean)( final case class SequencedMessage[A](producerId: String, seqNr: SeqNr, message: A, first: Boolean, ack: Boolean)(
/** INTERNAL API */
@InternalApi private[akka] val producerController: ActorRef[ProducerControllerImpl.InternalCommand]) @InternalApi private[akka] val producerController: ActorRef[ProducerControllerImpl.InternalCommand])
extends Command[A] extends Command[A]
with DeliverySerializable with DeliverySerializable