Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Akka Cookbook

You're reading from   Akka Cookbook Recipes for concurrent, fast, and reactive applications

Arrow left icon
Product type Paperback
Published in May 2017
Publisher Packt
ISBN-13 9781785288180
Length 414 pages
Edition 1st Edition
Languages
Tools
Concepts
Arrow right icon
Authors (3):
Arrow left icon
Vivek Mishra Vivek Mishra
Author Profile Icon Vivek Mishra
Vivek Mishra
Piyush Mishra Piyush Mishra
Author Profile Icon Piyush Mishra
Piyush Mishra
Héctor Veiga Ortiz Héctor Veiga Ortiz
Author Profile Icon Héctor Veiga Ortiz
Héctor Veiga Ortiz
Arrow right icon
View More author details
Toc

Table of Contents (12) Chapters Close

Preface 1. Diving into Akka FREE CHAPTER 2. Supervision and Monitoring 3. Routing Messages 4. Using Futures and Agents 5. Scheduling Actors and Other Utilities 6. Akka Persistence 7. Remoting and Akka Clustering 8. Akka Streams 9. Akka HTTP 10. Understanding Various Akka patterns 11. Microservices with Lagom

Creating a SmallestMailboxPool of actors


In this recipe, you will learn how to create a SmallestMailboxPool or group for actors. SmallestMailboxPool is a pool of actors, and resembles the property whereby messages will globally be delivered to the actor with the least number of messages in its mailbox.

Getting ready

To step through this recipe, you will have to import the Hello-Akka project in an IDE such as IntelliJ Idea, and create a package called chapter3.

How to do it...

  1. Create a Scala file, Smallestmailbox.scala, in the package com.packt.chapter3.
  2. Add the following imports at the top of the file:
        import akka.actor.{Props, ActorSystem, Actor} 
        import akka.routing.SmallestMailboxPool 

 

  1. Let's define an actor as follows:
        class SmallestmailboxActor extends Actor { 
          override def receive = { 
            case msg: String => println(s" I am ${self.path.name}") 
            case _ => println(s" I don't understand the message") 
          } 
        } 
  1. Let's create...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image