
blended.itestsupport.condition.AsyncChecker.scala Maven / Gradle / Ivy
/*
* Copyright 2014ff, https://github.com/woq-blended
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package blended.itestsupport.condition
import akka.actor.{Actor, ActorLogging}
import blended.itestsupport.protocol.CheckAsyncCondition
import scala.concurrent.Future
abstract class AsyncChecker extends Actor with ActorLogging {
protected implicit val ctxt = context.system.dispatcher
case object Tick
case object Stop
def performCheck(condition: AsyncCondition) : Future[Boolean]
def receive = initializing
def initializing : Receive = {
case CheckAsyncCondition(condition) =>
log.debug("Starting asynchronous condition checker")
self ! Tick
context.become(checking(condition))
}
def checking(condition: AsyncCondition) : Receive = {
case Tick =>
log.debug(s"Checking asynchronous [${condition.description}] condition ....")
performCheck(condition).map(_ match {
case true =>
log.debug(s"Asynchronous condition [${condition.description}] is now satisfied.")
condition.isSatisfied.set(true)
context.stop(self)
case false =>
log.debug(s"Scheduling next condition check in [${condition.interval}]")
context.system.scheduler.scheduleOnce(condition.interval, self, Tick)
})
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy