fix docs generation
This commit is contained in:
parent
dde676927c
commit
c16fcebc21
3 changed files with 13 additions and 9 deletions
|
|
@ -150,6 +150,14 @@ trait Router extends Actor {
|
||||||
*/
|
*/
|
||||||
case class Broadcast(message: Any)
|
case class Broadcast(message: Any)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* For every message sent to a router, its route determines a set of destinations,
|
||||||
|
* where for each recipient a different sender may be specified; typically the
|
||||||
|
* sender should match the sender of the original request, but e.g. the scatter-
|
||||||
|
* gather router needs to receive the replies with an AskActorRef instead.
|
||||||
|
*/
|
||||||
|
case class Destination(sender: ActorRef, recipient: ActorRef)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Routing configuration that indicates no routing.
|
* Routing configuration that indicates no routing.
|
||||||
* Oxymoron style.
|
* Oxymoron style.
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,8 @@
|
||||||
|
|
||||||
package akka
|
package akka
|
||||||
|
|
||||||
import akka.actor.ActorRef
|
|
||||||
|
|
||||||
package object routing {
|
package object routing {
|
||||||
|
|
||||||
case class Destination(sender: ActorRef, recipient: ActorRef)
|
type Route = PartialFunction[(akka.actor.ActorRef, Any), Iterable[Destination]]
|
||||||
|
|
||||||
type Route = PartialFunction[(ActorRef, Any), Iterable[Destination]]
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -4498,7 +4498,7 @@ public final class RemoteProtocol {
|
||||||
maybeForceBuilderInitialization();
|
maybeForceBuilderInitialization();
|
||||||
}
|
}
|
||||||
|
|
||||||
private Builder(BuilderParent parent) {
|
private Builder(com.google.protobuf.GeneratedMessage.BuilderParent parent) {
|
||||||
super(parent);
|
super(parent);
|
||||||
maybeForceBuilderInitialization();
|
maybeForceBuilderInitialization();
|
||||||
}
|
}
|
||||||
|
|
@ -5022,7 +5022,7 @@ public final class RemoteProtocol {
|
||||||
maybeForceBuilderInitialization();
|
maybeForceBuilderInitialization();
|
||||||
}
|
}
|
||||||
|
|
||||||
private Builder(BuilderParent parent) {
|
private Builder(com.google.protobuf.GeneratedMessage.BuilderParent parent) {
|
||||||
super(parent);
|
super(parent);
|
||||||
maybeForceBuilderInitialization();
|
maybeForceBuilderInitialization();
|
||||||
}
|
}
|
||||||
|
|
@ -5579,7 +5579,7 @@ public final class RemoteProtocol {
|
||||||
maybeForceBuilderInitialization();
|
maybeForceBuilderInitialization();
|
||||||
}
|
}
|
||||||
|
|
||||||
private Builder(BuilderParent parent) {
|
private Builder(com.google.protobuf.GeneratedMessage.BuilderParent parent) {
|
||||||
super(parent);
|
super(parent);
|
||||||
maybeForceBuilderInitialization();
|
maybeForceBuilderInitialization();
|
||||||
}
|
}
|
||||||
|
|
@ -6261,7 +6261,7 @@ public final class RemoteProtocol {
|
||||||
maybeForceBuilderInitialization();
|
maybeForceBuilderInitialization();
|
||||||
}
|
}
|
||||||
|
|
||||||
private Builder(BuilderParent parent) {
|
private Builder(com.google.protobuf.GeneratedMessage.BuilderParent parent) {
|
||||||
super(parent);
|
super(parent);
|
||||||
maybeForceBuilderInitialization();
|
maybeForceBuilderInitialization();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue