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

jsactor.bridge.protocol.BridgeProtocol.scala Maven / Gradle / Ivy

The newest version!
/*
 * BridgeProtocol.scala
 *
 * Updated: Apr 23, 2015
 *
 * Copyright (c) 2015, CodeMettle
 */
package jsactor.bridge.protocol

import scala.annotation.implicitNotFound

/**
 * @author steven
 *
 */
@implicitNotFound("Need an implicit BridgeProtocol in scope, consider creating an implicit object extending BridgeProtocol")
trait BridgeProtocol[PickleTo] {
  def pickle(obj: Any): PickleTo

  def unpickle(json: PickleTo): Any
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy