typesafehub / akka-contrib-extra

ConductR Akka contributions
Other
9 stars 16 forks source link

Added NoSerializationVerificationNeeded marker #40

Closed huntc closed 9 years ago

huntc commented 9 years ago

In addition the blocking process actor now ensures that its messages may only be sent to its parent, and not any other type of actor. This is because the actor publishers sent as part of the start message are not serialisable.

Contributes toward: https://github.com/typesafehub/conductr/issues/512

hseeberger commented 9 years ago

I have an idea: We could mix PossiblyHarmful into these messages we don't want to go over the wire. That's more effective. WDYT?

huntc commented 9 years ago

Nice idea, but PossiblyHarmful wouldn't prevent it from being checked in our tests...

huntc commented 9 years ago

I think what we're doing here is the right thing to do, and it is consistent with the Akka code base from an initial inspection.