object Tracked
- Alphabetic
- By Inheritance
- Tracked
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
diffInputs(cacheFile: File, style: Style): Difference
Creates a tracker that provides the difference between a set of input files for successive invocations.
-
def
diffInputs(store: CacheStore, style: Style): Difference
Creates a tracker that provides the difference between a set of input files for successive invocations.
-
def
diffOutputs(cacheFile: File, style: Style): Difference
Creates a tracker that provides the difference between a set of output files for successive invocations.
-
def
diffOutputs(store: CacheStore, style: Style): Difference
Creates a tracker that provides the difference between a set of output files for successive invocations.
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
inputChanged[I, O](cacheFile: File)(f: (Boolean, I) ⇒ O)(implicit arg0: JsonFormat[I], arg1: SingletonCache[I]): (I) ⇒ O
Creates a tracker that indicates whether the arguments given to f have changed since the most recent invocation.
Creates a tracker that indicates whether the arguments given to f have changed since the most recent invocation.
val cachedTask = inputChanged(cache / "inputs") { (inChanged, in: Inputs) => Tracked.outputChanged(cache / "output") { (outChanged, outputs: FilesInfo[PlainFileInfo]) => if (inChanged || outChanged) { doSomething(label, sources, classpath, outputDirectory, options, log) } } } cachedDoc(inputs)(() => exists(outputDirectory.allPaths.get.toSet))
-
def
inputChanged[I, O](store: CacheStore)(f: (Boolean, I) ⇒ O)(implicit arg0: JsonFormat[I], arg1: SingletonCache[I]): (I) ⇒ O
Creates a tracker that indicates whether the arguments given to f have changed since the most recent invocation.
Creates a tracker that indicates whether the arguments given to f have changed since the most recent invocation.
val cachedTask = inputChanged(cacheStoreFactory.make("inputs")) { (inChanged, in: Inputs) => Tracked.outputChanged(cacheStoreFactory.make("output")) { (outChanged, outputs: FilesInfo[PlainFileInfo]) => if (inChanged || outChanged) { doSomething(label, sources, classpath, outputDirectory, options, log) } } } cachedDoc(inputs)(() => exists(outputDirectory.allPaths.get.toSet))
-
def
inputChangedW[I, O](cacheFile: File)(f: (Boolean, I) ⇒ O)(implicit arg0: JsonWriter[I]): (I) ⇒ O
Creates a tracker that indicates whether the arguments given to f have changed since the most recent invocation.
Creates a tracker that indicates whether the arguments given to f have changed since the most recent invocation.
val cachedTask = inputChanged(cache / "inputs") { (inChanged, in: Inputs) => Tracked.outputChanged(cache / "output") { (outChanged, outputs: FilesInfo[PlainFileInfo]) => if (inChanged || outChanged) { doSomething(label, sources, classpath, outputDirectory, options, log) } } } cachedDoc(inputs)(() => exists(outputDirectory.allPaths.get.toSet))
This is a variant of
inputChanged
that takesI: JsonWriter
as opposed toI: JsonFormat
. -
def
inputChangedW[I, O](store: CacheStore)(f: (Boolean, I) ⇒ O)(implicit arg0: JsonWriter[I]): (I) ⇒ O
Creates a tracker that indicates whether the arguments given to f have changed since the most recent invocation.
Creates a tracker that indicates whether the arguments given to f have changed since the most recent invocation.
val cachedTask = inputChanged(cacheStoreFactory.make("inputs")) { (inChanged, in: Inputs) => Tracked.outputChanged(cacheStoreFactory.make("output")) { (outChanged, outputs: FilesInfo[PlainFileInfo]) => if (inChanged || outChanged) { doSomething(label, sources, classpath, outputDirectory, options, log) } } } cachedDoc(inputs)(() => exists(outputDirectory.allPaths.get.toSet))
This is a variant of
inputChanged
that takesI: JsonWriter
as opposed toI: JsonFormat
. -
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
lastOutput[I, O](cacheFile: File)(f: (I, Option[O]) ⇒ O)(implicit arg0: JsonFormat[O]): (I) ⇒ O
Creates a tracker that provides the output of the most recent invocation of the function
-
def
lastOutput[I, O](store: CacheStore)(f: (I, Option[O]) ⇒ O)(implicit arg0: JsonFormat[O]): (I) ⇒ O
Creates a tracker that provides the output of the most recent invocation of the function
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
outputChanged[A1, A2](cacheFile: File)(f: (Boolean, A1) ⇒ A2)(implicit arg0: JsonFormat[A1]): (() ⇒ A1) ⇒ A2
Creates a tracker that indicates whether the output returned from
p
has changed or not.Creates a tracker that indicates whether the output returned from
p
has changed or not.val cachedTask = inputChanged(cache / "inputs") { (inChanged, in: Inputs) => Tracked.outputChanged(cache / "output") { (outChanged, outputs: FilesInfo[PlainFileInfo]) => if (inChanged || outChanged) { doSomething(label, sources, classpath, outputDirectory, options, log) } } } cachedDoc(inputs)(() => exists(outputDirectory.allPaths.get.toSet))
-
def
outputChanged[A1, A2](store: CacheStore)(f: (Boolean, A1) ⇒ A2)(implicit arg0: JsonFormat[A1]): (() ⇒ A1) ⇒ A2
Creates a tracker that indicates whether the output returned from
p
has changed or not.Creates a tracker that indicates whether the output returned from
p
has changed or not.val cachedTask = inputChanged(cacheStoreFactory.make("inputs")) { (inChanged, in: Inputs) => Tracked.outputChanged(cacheStoreFactory.make("output")) { (outChanged, outputs: FilesInfo[PlainFileInfo]) => if (inChanged || outChanged) { doSomething(label, sources, classpath, outputDirectory, options, log) } } } cachedDoc(inputs)(() => exists(outputDirectory.allPaths.get.toSet))
-
def
outputChangedW[A1, A2](cacheFile: File)(f: (Boolean, A1) ⇒ A2)(implicit arg0: JsonWriter[A1]): (() ⇒ A1) ⇒ A2
Creates a tracker that indicates whether the output returned from
p
has changed or not.Creates a tracker that indicates whether the output returned from
p
has changed or not.val cachedTask = inputChanged(cache / "inputs") { (inChanged, in: Inputs) => Tracked.outputChanged(cache / "output") { (outChanged, outputs: FilesInfo[PlainFileInfo]) => if (inChanged || outChanged) { doSomething(label, sources, classpath, outputDirectory, options, log) } } } cachedDoc(inputs)(() => exists(outputDirectory.allPaths.get.toSet))
This is a variant of
outputChanged
that takesA1: JsonWriter
as opposed toA1: JsonFormat
. -
def
outputChangedW[A1, A2](store: CacheStore)(f: (Boolean, A1) ⇒ A2)(implicit arg0: JsonWriter[A1]): (() ⇒ A1) ⇒ A2
Creates a tracker that indicates whether the output returned from
p
has changed or not.Creates a tracker that indicates whether the output returned from
p
has changed or not.val cachedTask = inputChanged(cacheStoreFactory.make("inputs")) { (inChanged, in: Inputs) => Tracked.outputChanged(cacheStoreFactory.make("output")) { (outChanged, outputs: FilesInfo[PlainFileInfo]) => if (inChanged || outChanged) { doSomething(label, sources, classpath, outputDirectory, options, log) } } } cachedDoc(inputs)(() => exists(outputDirectory.allPaths.get.toSet))
This is a variant of
outputChanged
that takesA1: JsonWriter
as opposed toA1: JsonFormat
. -
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
tstamp(cacheFile: File, useStartTime: Boolean): Timestamp
Creates a tracker that provides the last time it was evaluated.
Creates a tracker that provides the last time it was evaluated. If 'useStartTime' is true, the recorded time is the start of the evaluated function. If 'useStartTime' is false, the recorded time is when the evaluated function completes. In both cases, the timestamp is not updated if the function throws an exception.
-
def
tstamp(store: CacheStore, useStartTime: Boolean): Timestamp
Creates a tracker that provides the last time it was evaluated.
Creates a tracker that provides the last time it was evaluated. If 'useStartTime' is true, the recorded time is the start of the evaluated function. If 'useStartTime' is false, the recorded time is when the evaluated function completes. In both cases, the timestamp is not updated if the function throws an exception.
-
def
tstamp(cacheFile: File): Timestamp
Creates a tracker that provides the last time it was evaluated.
Creates a tracker that provides the last time it was evaluated. If the function throws an exception.
-
def
tstamp(store: CacheStore): Timestamp
Creates a tracker that provides the last time it was evaluated.
Creates a tracker that provides the last time it was evaluated. If the function throws an exception.
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()