A list of Akka Persistence plugins is now maintained at http://akka.io/community/. Please edit this page to add a new plugin.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.google.protobuf.ByteString; | |
| import akka.actor.Props; | |
| import akka.event.DiagnosticLoggingAdapter; | |
| import akka.event.Logging; | |
| import akka.japi.pf.ReceiveBuilder; | |
| import akka.persistence.AbstractPersistentActorWithAtLeastOnceDelivery; | |
| import akka.persistence.AtLeastOnceDelivery; | |
| import akka.persistence.RecoveryCompleted; | |
| import akka.persistence.SaveSnapshotFailure; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.concurrent.Executors | |
| import scala.concurrent._ | |
| import scala.concurrent.duration.Duration | |
| import scala.util.{Failure, Try} | |
| trait CancellableFuture[T] extends Future[T] { | |
| def future(): Future[T] | |
| def cancel(): Unit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias gbr='git for-each-ref --sort="-authordate:iso8601" --format=" %(color:green)%(authordate:iso8601)%09%(color:white)%(refname:short)" refs/heads' |
- Probabilistic Data Structures for Web Analytics and Data Mining : A great overview of the space of probabilistic data structures and how they are used in approximation algorithm implementation.
- Models and Issues in Data Stream Systems
- Philippe Flajolet’s contribution to streaming algorithms : A presentation by Jérémie Lumbroso that visits some of the hostorical perspectives and how it all began with Flajolet
- Approximate Frequency Counts over Data Streams by Gurmeet Singh Manku & Rajeev Motwani : One of the early papers on the subject.
- [Methods for Finding Frequent Items in Data Streams](http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.187.9800&rep=rep1&t
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| trait BeeperDevice { | |
| def beep(beepSound: String) | |
| } | |
| trait DependsOnBeeper { | |
| protected val beeper: BeeperDevice | |
| } | |
| class Beeper extends BeeperDevice { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export ARCH=arm-apple-darwin10 | |
| export ARCH_PREFIX=${ARCH}- | |
| export PLATFORM=iPhoneOS | |
| export SDKVER=5.0 | |
| export DEVROOT=/Developer/Platforms/${PLATFORM}.platform/Developer | |
| export SDKROOT="$DEVROOT/SDKs/${PLATFORM}$SDKVER.sdk" | |
| export PKG_CONFIG_PATH="$SDKROOT/usr/lib/pkgconfig:$DEVROOT/usr/lib/pkgconfig" | |
| export AS="$DEVROOT/usr/bin/as" | |
| export ASCPP="$DEVROOT/usr/bin/as" |