Ayush

Results 3 issues of Ayush

`CassandraRecovery ` class implements the method. Following is the code ``` override def asyncReadHighestSequenceNr(persistenceId: String, fromSequenceNr: Long): Future[Long] = asyncHighestDeletedSequenceNumber(persistenceId).flatMap { h => asyncFindHighestSequenceNr(persistenceId, math.max(fromSequenceNr, h)) } ``` It reads...

help wanted
1 - triaged

``` case class Foo(bar1: String, bar2: String, bar3: Int) val validator = validator[Foo] .checkEmpty() //same as validator[Foo].check(_.bar1.nonEmpty).check(_.bar2.nonEmpty) ```

Need to add support for decoration of types scala.Function2 and above

enhancement