(actor *ActorIdentity)
| 4098 | } |
| 4099 | |
| 4100 | func cloneActorIdentity(actor *ActorIdentity) *ActorIdentity { |
| 4101 | if actor == nil { |
| 4102 | return nil |
| 4103 | } |
| 4104 | cloned := *actor |
| 4105 | return &cloned |
| 4106 | } |
| 4107 | |
| 4108 | func cloneNeedsAttention(attention *NeedsAttention) *NeedsAttention { |
| 4109 | if attention == nil { |
no outgoing calls