Merge pull request #18256 from akka/wip-18187-producer-patriknw
=act #18187 Make Props.producer private[akka]
This commit is contained in:
commit
72489209b1
1 changed files with 4 additions and 1 deletions
|
|
@ -169,7 +169,10 @@ final case class Props(deploy: Deploy, clazz: Class[_], args: immutable.Seq[Any]
|
|||
@transient
|
||||
private[this] var _cachedActorClass: Class[_ <: Actor] = _
|
||||
|
||||
private[this] def producer: IndirectActorProducer = {
|
||||
/**
|
||||
* INTERNAL API
|
||||
*/
|
||||
private[akka] def producer: IndirectActorProducer = {
|
||||
if (_producer eq null)
|
||||
_producer = IndirectActorProducer(clazz, args)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue