fix unmoored doc comment in SequencedMessage (#28730)
* failing nightly publish * becomes compilation error when publishLocal
This commit is contained in:
parent
c733a09332
commit
ad0f19a694
1 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue