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

com.mle.push.PushClient.scala Maven / Gradle / Ivy

The newest version!
package com.mle.push

import scala.concurrent.Future

/**
 * @tparam T type of message
 * @tparam U type of response
 */
trait PushClient[T, U] {
  def push(id: String, message: T): Future[U]

  def pushAll(ids: Seq[String], message: T): Future[Seq[U]]
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy