Skip to content

Instantly share code, notes, and snippets.

View julien-lafont's full-sized avatar

Julien Lafont julien-lafont

View GitHub Profile
case class ReportInvalidJsonActorHolder(ref: ActorRef)
case class ReportUnhandledExceptionActorHolder(ref: ActorRef)
case class HeartbestProcessingActorHolder(ref: ActorRef)
case class DebugEmailActorHolder(ref: ActorRef)
object ReportInvalidJsonActor {
def props(debugEmailActorHolder: DebugEmailActorHolder) =
Props(classOf[ReportInvalidJsonActor], debugEmailActorHolder)
case class InvalidJsonMessage(content : String, exceptionMessage: String)