Skip to content
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

Akka typed actor tag and auto-grouping changes #898

Merged
merged 4 commits into from
Nov 24, 2020

Commits on Nov 24, 2020

  1. Actor tag changes to accomodate typed actors

    Actor class name tag is removed when the actor is typed.
    Operation name is now only 'operation(MessageClass)', where before it was
    'operation(ActorClass, MessageClass)'
    SimunKaracic committed Nov 24, 2020
    Configuration menu
    Copy the full SHA
    18c1d02 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e0956d3 View commit details
    Browse the repository at this point in the history
  3. Disable auto-grouping for typed actors

    This must be done becase we can no longer obtain the actor class name consistently,
    since typed actors are converted to ActorAdapters.
    If we don't disable autogrouping, all typed actors on the same level
    are placed in the same group
    SimunKaracic committed Nov 24, 2020
    Configuration menu
    Copy the full SHA
    20e20b3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e0879d4 View commit details
    Browse the repository at this point in the history