Created
February 14, 2021 08:13
-
-
Save vigneshwaranr/d648da8e2648925a29f653b019b4c577 to your computer and use it in GitHub Desktop.
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 scala.concurrent.ExecutionContext.Implicits.global | |
import scala.concurrent.{ExecutionContext, Future} | |
trait Request | |
trait Response | |
trait CacheService { | |
def myOwnEc: ExecutionContext | |
def isDuplicateRequest(request: Request): Future[Option[Request]] | |
def setCacheForDeduplication(dedupedReq: Option[Request]): Future[Boolean] | |
} | |
trait Processor { | |
def process(request: Option[Request])(implicit ec: ExecutionContext): Future[Response] | |
} | |
class API(cacheService: CacheService, processor: Processor) { | |
def process(request: Request): Future[Response] = { | |
for { | |
dedupedRequest <- cacheService.isDuplicateRequest(request) | |
response <- processor.process(dedupedRequest) | |
_ = cacheService.setCacheForDeduplication(dedupedRequest) // now unplugged from the flow | |
} yield response | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment