alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Akka/Scala example source code file (StashJavaAPITestActors.java)

This example Akka source code file (StashJavaAPITestActors.java) is included in my "Source Code Warehouse" project. The intent of this project is to help you more easily find Akka and Scala source code examples by using tags.

All credit for the original source code belongs to akka.io; I'm just trying to make examples easier to find. (For my Scala work, see my Scala examples and tutorials.)

Akka tags/keywords

actor, actorref, akka, integer, stashjavaapitestactors, string, unrestrictedstash, untypedactorwithstash, untypedactorwithunboundedstash, withstash, withunboundedstash, withunrestrictedstash

The StashJavaAPITestActors.java Akka example source code

package akka.actor;

import static org.junit.Assert.*;

public class StashJavaAPITestActors {

    /*
     * Helper method to make the tests of UntypedActorWithStash, UntypedActorWithUnboundedStash and
     * UntypedActorWithUnrestrictedStash more DRY since mixin is not possible.
     */
    private static int testReceive(Object msg, int count, ActorRef sender, ActorRef self, UnrestrictedStash stash) {
        if (msg instanceof String) {
            if (count < 0) {
                sender.tell(new Integer(((String) msg).length()), self);
            } else if (count == 2) {
                stash.unstashAll();
                return -1;
            } else {
                stash.stash();
                return count + 1;
            }
        } else if (msg instanceof Integer) {
            int value = ((Integer) msg).intValue();
            assertEquals(value, 5);
        }
        return count;
    }

    public static class WithStash extends UntypedActorWithStash {
        int count = 0;

        public void onReceive(Object msg) {
            count = testReceive(msg, count, getSender(), getSelf(), this);
        }
    }

    public static class WithUnboundedStash extends UntypedActorWithUnboundedStash {
        int count = 0;

        public void onReceive(Object msg) {
            count = testReceive(msg, count, getSender(), getSelf(), this);
        }
    }

    public static class WithUnrestrictedStash extends UntypedActorWithUnrestrictedStash {
        int count = 0;

        public void onReceive(Object msg) {
            count = testReceive(msg, count, getSender(), getSelf(), this);
        }
    }
}

Other Akka source code examples

Here is a short list of links related to this Akka StashJavaAPITestActors.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.