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

com.codemettle.streamutil.IngestingResult.scala Maven / Gradle / Ivy

The newest version!
package com.codemettle.streamutil

import java.net.InetSocketAddress

import akka.stream.KillSwitch

/**
  * @author steven
  *
  */
sealed trait IngestingResult
case class Ingesting(boundTo: InetSocketAddress, ks: KillSwitch) extends IngestingResult
case object BindFailure extends IngestingResult
case class OtherFailure(t: Throwable) extends IngestingResult




© 2015 - 2024 Weber Informatics LLC | Privacy Policy