2015-01-10 08:24:45 -06:00
|
|
|
/**
|
2015-03-07 22:58:48 -08:00
|
|
|
* Copyright (C) 2009-2015 Typesafe Inc. <http://www.typesafe.com>
|
2015-01-10 08:24:45 -06:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
package akka.persistence
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* INTERNAL API.
|
|
|
|
|
*
|
|
|
|
|
* Messages exchanged between persistent actors, views and a journal/snapshot-store.
|
|
|
|
|
*/
|
|
|
|
|
private[persistence] object Protocol {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* INTERNAL API.
|
|
|
|
|
*
|
|
|
|
|
* Internal persistence extension messages extend this trait.
|
|
|
|
|
*
|
|
|
|
|
* Helps persistence plugin developers to differentiate
|
|
|
|
|
* internal persistence extension messages from their custom plugin messages.
|
|
|
|
|
*/
|
|
|
|
|
trait Message
|
|
|
|
|
|
|
|
|
|
}
|