AspectJ in Scala

Good afternoon,

I want to intercept and act upon AKKA functions, such as receive, !, tell, stop, etc. I want the program to execute another function call prior to the actual functionality required by AKKA functions.

i.e. Instead of

ping ! Hello

,I want

sentIntercepted(ping, Hello)
ping ! Hello

Can somebody help in trying to figure this issue please ?

Thanks a lot and good day :slight_smile: