All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.specs2.io.Store.scala Maven / Gradle / Ivy

There is a newer version: 4.10.6
Show newest version
package org.specs2
package io

import control._

/**
 * Key-value store
 */
trait Store {
  def get[A](key: Key[A]): Action[Option[A]]
  def set[A](key: Key[A], a: A): Action[Unit]
  def reset: Action[Unit]
}

trait Key[A]





© 2015 - 2025 Weber Informatics LLC | Privacy Policy