* Add CopyrightHeader support for sbt-boilerplate plugin. * Add CopyrightHeader support for `*.proto` files. * Add regex match for both `–` and `-` for CopyrightHeader. * Add CopyrightHeader support for sbt build files. * Update copyright from 2018 to 2019.
14 lines
363 B
Java
14 lines
363 B
Java
/*
|
|
* Copyright (C) 2009-2019 Lightbend Inc. <https://www.lightbend.com>
|
|
*/
|
|
|
|
package jdocs.actor;
|
|
|
|
//#my-bounded-untyped-actor
|
|
import akka.dispatch.BoundedMessageQueueSemantics;
|
|
import akka.dispatch.RequiresMessageQueue;
|
|
|
|
public class MyBoundedActor extends MyActor
|
|
implements RequiresMessageQueue<BoundedMessageQueueSemantics> {
|
|
}
|
|
//#my-bounded-untyped-actor
|