Actor represents a V7 actor.
| 27 | |
| 28 | // Actor represents a V7 actor. |
| 29 | type Actor struct { |
| 30 | CloudControllerClient CloudControllerClient |
| 31 | Config Config |
| 32 | SharedActor SharedActor |
| 33 | UAAClient UAAClient |
| 34 | RoutingClient RoutingClient |
| 35 | Clock clock.Clock |
| 36 | |
| 37 | AuthActor |
| 38 | } |
| 39 | |
| 40 | // NewActor returns a new V7 actor. |
| 41 | func NewActor( |
nothing calls this directly
no outgoing calls
no test coverage detected