Skip to content
This repository has been archived by the owner on Jan 20, 2022. It is now read-only.

Commit

Permalink
Both args can be tail producer to the AlsoTailProducer
Browse files Browse the repository at this point in the history
  • Loading branch information
ianoc committed Jan 20, 2014
1 parent a517bff commit 1c84990
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ sealed trait TailProducer[P <: Platform[P], +T] extends Producer[P, T] {
override def name(id: String): TailProducer[P, T] = new TPNamedProducer[P, T](this, id)
}

class AlsoTailProducer[P <: Platform[P], T, R](ensure: TailProducer[P, T], result: Producer[P, R]) extends AlsoProducer[P, T, R](ensure, result) with TailProducer[P, R]
class AlsoTailProducer[P <: Platform[P], T, R](ensure: TailProducer[P, T], result: TailProducer[P, R]) extends AlsoProducer[P, T, R](ensure, result) with TailProducer[P, R]

/**
* This is a special node that ensures that the first argument is planned, but produces values
Expand Down

0 comments on commit 1c84990

Please sign in to comment.