= #17380 genjavadoc 0.9

This commit is contained in:
Patrik Nordwall 2015-05-18 11:12:25 +02:00
parent 18688fc84b
commit 94fd6676b2
3 changed files with 8 additions and 7 deletions

1
.gitignore vendored
View file

@ -26,6 +26,7 @@
.scala_dependencies
.scalastyle
.settings
.cache*
.tags
.tags_sorted_by_file
.target

View file

@ -194,9 +194,9 @@ class ClusterClient(
}
/**
* Extension that starts [[ClusterReceptionist]] and accompanying [[DistributedPubSubMediator]]
* Extension that starts [[ClusterReceptionist]] and accompanying [[akka.cluster.pubsub.DistributedPubSubMediator]]
* with settings defined in config section `akka.cluster.client.receptionist`.
* The [[DistributedPubSubMediator]] is started by the [[DistributedPubSubExtension]].
* The [[akka.cluster.pubsub.DistributedPubSubMediator]] is started by the [[akka.cluster.pubsub.DistributedPubSubExtension]].
*/
object ClusterReceptionistExtension extends ExtensionId[ClusterReceptionistExtension] with ExtensionIdProvider {
override def get(system: ActorSystem): ClusterReceptionistExtension = super.get(system)
@ -347,12 +347,12 @@ object ClusterReceptionist {
* The receptionist can be started with the [[ClusterReceptionistExtension]] or as an
* ordinary actor (use the factory method [[ClusterReceptionist#props]]).
*
* The receptionist forwards messages from the client to the associated [[DistributedPubSubMediator]],
* The receptionist forwards messages from the client to the associated [[akka.cluster.pubsub.DistributedPubSubMediator]],
* i.e. the client can send messages to any actor in the cluster that is registered in the
* `DistributedPubSubMediator`. Messages from the client are wrapped in
* [[DistributedPubSubMediator.Send]], [[DistributedPubSubMediator.SendToAll]]
* or [[DistributedPubSubMediator.Publish]] with the semantics described in
* [[DistributedPubSubMediator]].
* [[akka.cluster.pubsub.DistributedPubSubMediator.Send]], [[akka.cluster.pubsub.DistributedPubSubMediator.SendToAll]]
* or [[akka.cluster.pubsub.DistributedPubSubMediator.Publish]] with the semantics described in
* [[akka.cluster.pubsub.DistributedPubSubMediator]].
*
* Response messages from the destination actor are tunneled via the receptionist
* to avoid inbound connections from other cluster nodes to the client, i.e.

View file

@ -25,7 +25,7 @@ object Unidoc {
if (genjavadocEnabled)
(scalaJavaUnidocSettings, genjavadocExtraSettings ++ Seq(
scalacOptions in Compile += "-P:genjavadoc:fabricateParams=true",
unidocGenjavadocVersion in Global := "0.9-SNAPSHOT"))
unidocGenjavadocVersion in Global := "0.9"))
else (scalaUnidocSettings, Nil)
lazy val scaladocDiagramsEnabled = sys.props.get("akka.scaladoc.diagrams").getOrElse("true").toBoolean