Akka is a concurrent framework written by Scala.
Here I demonstrate sample application to send emails with Akka and implemented in Java.
Reasons I decided to use Akka framework other than concurrency.
- Built-in configurable supervisor strategy to monitor child workers and decide what policy applies when there is an exception.
- Can reschedule delivery when application throwing some specific exception.
- Use of actor routers and allow them to use actor connection pool.
Here is how to create supervision strategy.
class EmailServiceActor extends UntypedActor {
private static SupervisorStrategy strategy =
new OneForOneStrategy(10, Duration.create("1 minute"),
new Function<Throwable, Directive>() {
@Override
public Directive apply(Throwable t) {
if (t instanceof MessagingException) {
return resume();
} else if (t instanceof Exception) {
return stop();
} else {
return escalate();
}
}
});
@Override
public void onReceive(Object message) {
getContext().actorOf(new Props(EmailServiceWorker.class)).tell(message, self());
}
@Override
public SupervisorStrategy supervisorStrategy() {
return strategy;
}
}Here is how child worker create
class EmailServiceWorker extends UntypedActor {
@Override
public void onReceive(Object message) {
try {
EmailService emailService = new EmailService();
emailService.sendEmail();
} catch (IOException e) {
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
} catch (MessagingException e) {
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
}
}
@Override
public void preStart() {
// getContext().system().scheduler().scheduleOnce(Duration.create(5, TimeUnit.SECONDS), self(), "emailWorker", getContext().system().dispatcher(), null);
}
@Override
public void postStop() {
}
}Sample application β https://github.com/rajithd/email-service-akka
Reference: Sending Email with Java and Akka actors from our JCG partner Rajith Delantha at the Looping around with Rajith⦠blog.
Do you want to know how to develop your skillset to become a Java Rockstar?
Subscribe to our newsletter to start Rocking right now!
To get you started we give you our best selling eBooks for FREE!
1. JPA Mini Book
2. JVM Troubleshooting Guide
3. JUnit Tutorial for Unit Testing
4. Java Annotations Tutorial
5. Java Interview Questions
6. Spring Interview Questions
7. Android UI Design
and many more ....
I agree to the Terms and Privacy Policy
Thank you!
We will contact you soon.
Tags
Akka
π Photo of Rajith Delantha
Rajith DelanthaOctober 2nd, 2013Last Updated: October 3rd, 2013
Rajith DelanthaOctober 2nd, 2013Last Updated: October 3rd, 2013
0 119 1 minute read

This site uses Akismet to reduce spam. Learn how your comment data is processed.