Skip to content
This repository has been archived by the owner on Feb 19, 2021. It is now read-only.

Commit

Permalink
feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
kailuowang committed Oct 18, 2016
1 parent 8d75f85 commit 7cdea20
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions distributed/src/main/scala/asobu/distributed/package.scala
Expand Up @@ -9,7 +9,4 @@ import scala.concurrent.Future

package object distributed {
type Headers = Seq[(String, String)] //Use Seq instead of Map to better ensure serialization

type Body = play.api.mvc.AnyContent //use Array[Byte] or other serializable data structure

}
2 changes: 1 addition & 1 deletion dsl/src/main/scala/asobu/dsl/Extractor.scala
Expand Up @@ -46,7 +46,7 @@ trait ExtractorFunctions extends ExtractorOps {
//todo: use Magnet pattern for the creation shortcuts here
implicit def of[TFrom, T](f: TFrom ExtractResult[T]): Extractor[TFrom, T] = Kleisli(f)

@deprecated("user `of` instead", "0.5.0")
@deprecated("use `of` instead", "0.5.0")
def fromFunction[TFrom, T](f: TFrom ExtractResult[T]): Extractor[TFrom, T] = f

def empty[TFrom]: Extractor[TFrom, HNil] = apply(_ HNil)
Expand Down

0 comments on commit 7cdea20

Please sign in to comment.