2013-04-18 13:35:36 +02:00
|
|
|
/**
|
2017-01-04 17:37:10 +01:00
|
|
|
* Copyright (C) 2009-2017 Lightbend Inc. <http://www.lightbend.com>
|
2013-04-18 13:35:36 +02:00
|
|
|
*/
|
|
|
|
|
|
2017-03-16 09:30:00 +01:00
|
|
|
package jdocs.actor;
|
2013-04-18 13:35:36 +02:00
|
|
|
|
|
|
|
|
//#my-bounded-untyped-actor
|
|
|
|
|
import akka.dispatch.BoundedMessageQueueSemantics;
|
|
|
|
|
import akka.dispatch.RequiresMessageQueue;
|
|
|
|
|
|
2017-03-16 09:30:00 +01:00
|
|
|
public class MyBoundedActor extends MyActor
|
2013-04-18 13:35:36 +02:00
|
|
|
implements RequiresMessageQueue<BoundedMessageQueueSemantics> {
|
|
|
|
|
}
|
|
|
|
|
//#my-bounded-untyped-actor
|