3

我想看看在FS2中实现对象池模式的最佳方法是什么。

假设我们有以下MyPrinter定义:

class MyPrinter {
  import scala.util.Random.nextInt
  Thread.sleep(5000 + nextInt(1000))
  def doStuff(s: String): Unit = {
    println(s)
    Thread.sleep(1000 + nextInt(1000))
  }
  def releaseResources(): Unit =
    println("Releasing resources")
}

由打印机Stream[Task, MyPrinter]池支持的最佳方法是什么?n当流结束时,所有底层资源都应该通过调用正确释放releaseResources

额外的问题:如果打印机因某种原因终止,是否可以在池中创建一个新的?

4

1 回答 1

4

不知道我得到了这个问题,但是这个怎么样

implicit val S = Strategy.fromFixedDaemonPool(10, "pooling")

val queue = new LinkedBlockingDeque[MyPrinter]()
queue.add(new MyPrinter)
queue.add(new MyPrinter)

Stream.repeatEval(Task.delay(queue.take()))
  .map(p => try p.doStuff("test") finally {
    p.releaseResources()
    queue.put(p)
  })
  .take(10)
  .runLog
  .unsafeRun()

队列可以替换为https://commons.apache.org/proper/commons-pool/

更新:

如果要同时处理每个“资源”:

concurrent.join(10)(
  Stream
    .repeatEval(Task.delay(queue.take()))
    .map(p => Stream.eval(Task.delay(p.doStuff("test"))
    .map(_ => p /* done with this resource */)))
).map(p => { p.releaseResources(); queue.put(p) /* release resource */})
 .take(10).runLog.unsafeRun()
于 2016-07-13T00:12:50.280 回答