puniverse / pulsar

Fibers, Channels and Actors for Clojure
http://docs.paralleluniverse.co/pulsar/
Other
911 stars 53 forks source link

Fix trap! fn #53

Closed DimaSalakhov closed 8 years ago

DimaSalakhov commented 8 years ago

@self returns ActorRef which cannot be casted to PulsarActor. currentActor() on the other hand returns Actor, which can be casted.

circlespainter commented 8 years ago

Thanks, so this fixes a ClassCastException? Could you also add a test case?

circlespainter commented 8 years ago

Thanks!