-
Notifications
You must be signed in to change notification settings - Fork 215
Child actors should be created using getContext().actorOf() #2274
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
And provide meaningful names to the actors when possible |
For example all actors created by Call actor should be children of Call actor, thus when Call actors terminated, all children will terminate also |
Akka documentation: http://doc.akka.io/docs/akka/2.1.2/general/addressing.html [Creating Actors] |
agafox
added a commit
to agafox/Restcomm-Connect
that referenced
this issue
Jun 29, 2017
gvagenas
added a commit
that referenced
this issue
Jul 7, 2017
maria-farooq
pushed a commit
that referenced
this issue
Jul 10, 2017
* master: - Patch for Recording and Dial with record, race condition - Patch for DialStatusCallback to don't execute the same state more than once This close #2332 This close #2335 Work in progress for issue #2332 Modified test case to test child behavior on parent termination This refer to #2274 TLS_CLIENT_AUTH_TYPE configuration option. Fixes #2328 - config-rvd.sh if/then/else syntax bug Merge Issue-2274 with origin/master Testsuite improvements added ActorSupervisorStrategyTest RestcommSupervisorStrategy.getStrategy() Patch to don't block call actor on Stopping state waiting for MmsCallController response This close #2261 added ActorSupervisorStrategyTest trying blackhub copilot Integrating black duck software copilot for license check hangupOnEnd default value bugfix Patch for race condition for Calls that execute Record verb and receive a Bye from client. This close #2313 Child actors should be created using getContext().actorOf() #2274
maria-farooq
pushed a commit
that referenced
this issue
Jul 12, 2017
* master: (37 commits) closed #2341 - Patch for Recording and Dial with record, race condition - Patch for DialStatusCallback to don't execute the same state more than once This close #2332 This close #2335 Work in progress for issue #2332 Modified test case to test child behavior on parent termination This refer to #2274 Configure 'rvdUrl' in dashboard.json from advanced.conf/RVD_URL TLS_CLIENT_AUTH_TYPE configuration option. Fixes #2328 - config-rvd.sh if/then/else syntax bug Merge Issue-2274 with origin/master Testsuite improvements added ActorSupervisorStrategyTest RestcommSupervisorStrategy.getStrategy() Patch to don't block call actor on Stopping state waiting for MmsCallController response This close #2261 added ActorSupervisorStrategyTest trying blackhub copilot Integrating black duck software copilot for license check fixed #2319 hangupOnEnd default value bugfix Patch for race condition for Calls that execute Record verb and receive a Bye from client. This close #2313 added DTMF_DETECTOR_TONE_INTERVAL #2303 added MEDIA_MAX_DURATION #2317 ... Conflicts resolved: restcomm/restcomm.monitoring.service/src/main/java/org/restcomm/connect/monitoringservice/MonitoringService.java restcomm/restcomm.mrb/src/main/java/org/restcomm/connect/mrb/MediaResourceBrokerGeneric.java restcomm/restcomm.sms/src/main/java/org/restcomm/connect/sms/SmsSession.java restcomm/restcomm.sms/src/main/java/org/restcomm/connect/sms/smpp/SmppMessageHandler.java restcomm/restcomm.telephony/src/main/java/org/restcomm/connect/telephony/CallManager.java restcomm/restcomm.telephony/src/main/java/org/restcomm/connect/telephony/ua/UserAgentManager.java restcomm/restcomm.ussd/src/main/java/org/restcomm/connect/ussd/telephony/UssdCallManager.java
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
...instead of getContext().system().actorOf().
This way the child actors will be terminated when the parent actor terminates
The text was updated successfully, but these errors were encountered: