aboutsummaryrefslogtreecommitdiff
path: root/flow-stream
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2016-05-16 15:28:59 -0700
committerJakob Odersky <jakob@odersky.com>2016-06-09 03:30:35 -0700
commit92c4b3d41e06ad4b89004212c85248e9e6cd61d7 (patch)
tree69470f7c4ed48edaebea91964d7d552e7eaacf0d /flow-stream
parentf6f26c2c9e3ec9bdd45fb384483b3450bef5984a (diff)
downloadakka-serial-92c4b3d41e06ad4b89004212c85248e9e6cd61d7.tar.gz
akka-serial-92c4b3d41e06ad4b89004212c85248e9e6cd61d7.tar.bz2
akka-serial-92c4b3d41e06ad4b89004212c85248e9e6cd61d7.zip
Move project to `ch.jodersky` and upgrade sbt-jni
Diffstat (limited to 'flow-stream')
-rw-r--r--flow-stream/src/main/scala/ch/jodersky/flow/stream/Serial.scala (renamed from flow-stream/src/main/scala/com/github/jodersky/flow/stream/Serial.scala)4
-rw-r--r--flow-stream/src/main/scala/ch/jodersky/flow/stream/StreamSerialException.scala (renamed from flow-stream/src/main/scala/com/github/jodersky/flow/stream/StreamSerialException.scala)2
-rw-r--r--flow-stream/src/main/scala/ch/jodersky/flow/stream/StreamWatcherException.scala (renamed from flow-stream/src/main/scala/com/github/jodersky/flow/stream/StreamWatcherException.scala)2
-rw-r--r--flow-stream/src/main/scala/ch/jodersky/flow/stream/impl/SerialConnectionLogic.scala (renamed from flow-stream/src/main/scala/com/github/jodersky/flow/stream/impl/SerialConnectionLogic.scala)4
-rw-r--r--flow-stream/src/main/scala/ch/jodersky/flow/stream/impl/SerialConnectionStage.scala (renamed from flow-stream/src/main/scala/com/github/jodersky/flow/stream/impl/SerialConnectionStage.scala)2
-rw-r--r--flow-stream/src/main/scala/ch/jodersky/flow/stream/impl/WatcherLogic.scala (renamed from flow-stream/src/main/scala/com/github/jodersky/flow/stream/impl/WatcherLogic.scala)4
-rw-r--r--flow-stream/src/main/scala/ch/jodersky/flow/stream/impl/WatcherStage.scala (renamed from flow-stream/src/main/scala/com/github/jodersky/flow/stream/impl/WatcherStage.scala)2
7 files changed, 10 insertions, 10 deletions
diff --git a/flow-stream/src/main/scala/com/github/jodersky/flow/stream/Serial.scala b/flow-stream/src/main/scala/ch/jodersky/flow/stream/Serial.scala
index b7f0557..d478de8 100644
--- a/flow-stream/src/main/scala/com/github/jodersky/flow/stream/Serial.scala
+++ b/flow-stream/src/main/scala/ch/jodersky/flow/stream/Serial.scala
@@ -1,4 +1,4 @@
-package com.github.jodersky.flow
+package ch.jodersky.flow
package stream
import akka.stream.scaladsl.Source
@@ -9,7 +9,7 @@ import akka.io.IO
import akka.stream.scaladsl.Flow
import akka.util.ByteString
-import com.github.jodersky.flow.{Serial => CoreSerial}
+import ch.jodersky.flow.{Serial => CoreSerial}
import impl._
object Serial extends ExtensionId[Serial] with ExtensionIdProvider {
diff --git a/flow-stream/src/main/scala/com/github/jodersky/flow/stream/StreamSerialException.scala b/flow-stream/src/main/scala/ch/jodersky/flow/stream/StreamSerialException.scala
index fad92fc..78438f9 100644
--- a/flow-stream/src/main/scala/com/github/jodersky/flow/stream/StreamSerialException.scala
+++ b/flow-stream/src/main/scala/ch/jodersky/flow/stream/StreamSerialException.scala
@@ -1,4 +1,4 @@
-package com.github.jodersky.flow
+package ch.jodersky.flow
package stream
/** Represents a generic exception occured during streaming of serial data. */
diff --git a/flow-stream/src/main/scala/com/github/jodersky/flow/stream/StreamWatcherException.scala b/flow-stream/src/main/scala/ch/jodersky/flow/stream/StreamWatcherException.scala
index b9fa468..8eee61c 100644
--- a/flow-stream/src/main/scala/com/github/jodersky/flow/stream/StreamWatcherException.scala
+++ b/flow-stream/src/main/scala/ch/jodersky/flow/stream/StreamWatcherException.scala
@@ -1,4 +1,4 @@
-package com.github.jodersky.flow
+package ch.jodersky.flow
package stream
class StreamWatcherException(message: String, cause: Throwable = null) extends RuntimeException(message, cause)
diff --git a/flow-stream/src/main/scala/com/github/jodersky/flow/stream/impl/SerialConnectionLogic.scala b/flow-stream/src/main/scala/ch/jodersky/flow/stream/impl/SerialConnectionLogic.scala
index 8af106f..764b054 100644
--- a/flow-stream/src/main/scala/com/github/jodersky/flow/stream/impl/SerialConnectionLogic.scala
+++ b/flow-stream/src/main/scala/ch/jodersky/flow/stream/impl/SerialConnectionLogic.scala
@@ -1,4 +1,4 @@
-package com.github.jodersky.flow
+package ch.jodersky.flow
package stream
package impl
@@ -9,7 +9,7 @@ import akka.stream.{FlowShape, Inlet, Outlet}
import akka.stream.stage.{GraphStageLogic, InHandler, OutHandler}
import akka.util.ByteString
-import com.github.jodersky.flow.{Serial => CoreSerial, SerialSettings}
+import ch.jodersky.flow.{Serial => CoreSerial, SerialSettings}
/**
* Graph logic that handles establishing and forwarding serial communication.
diff --git a/flow-stream/src/main/scala/com/github/jodersky/flow/stream/impl/SerialConnectionStage.scala b/flow-stream/src/main/scala/ch/jodersky/flow/stream/impl/SerialConnectionStage.scala
index bff1d26..ceeac01 100644
--- a/flow-stream/src/main/scala/com/github/jodersky/flow/stream/impl/SerialConnectionStage.scala
+++ b/flow-stream/src/main/scala/ch/jodersky/flow/stream/impl/SerialConnectionStage.scala
@@ -1,4 +1,4 @@
-package com.github.jodersky.flow
+package ch.jodersky.flow
package stream
package impl
diff --git a/flow-stream/src/main/scala/com/github/jodersky/flow/stream/impl/WatcherLogic.scala b/flow-stream/src/main/scala/ch/jodersky/flow/stream/impl/WatcherLogic.scala
index 11f695b..60b7c90 100644
--- a/flow-stream/src/main/scala/com/github/jodersky/flow/stream/impl/WatcherLogic.scala
+++ b/flow-stream/src/main/scala/ch/jodersky/flow/stream/impl/WatcherLogic.scala
@@ -1,4 +1,4 @@
-package com.github.jodersky.flow
+package ch.jodersky.flow
package stream
package impl
@@ -7,7 +7,7 @@ import scala.concurrent.Promise
import akka.actor.{ActorRef, Terminated}
import akka.stream.SourceShape
import akka.stream.stage.GraphStageLogic
-import com.github.jodersky.flow.{Serial => CoreSerial}
+import ch.jodersky.flow.{Serial => CoreSerial}
private[stream] class WatcherLogic(
shape: SourceShape[String],
diff --git a/flow-stream/src/main/scala/com/github/jodersky/flow/stream/impl/WatcherStage.scala b/flow-stream/src/main/scala/ch/jodersky/flow/stream/impl/WatcherStage.scala
index e236f5d..82fad69 100644
--- a/flow-stream/src/main/scala/com/github/jodersky/flow/stream/impl/WatcherStage.scala
+++ b/flow-stream/src/main/scala/ch/jodersky/flow/stream/impl/WatcherStage.scala
@@ -1,4 +1,4 @@
-package com.github.jodersky.flow
+package ch.jodersky.flow
package stream
package impl