object Tracked

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Tracked
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. def diffInputs(cacheFile: File, style: Style): Difference

    Creates a tracker that provides the difference between a set of input files for successive invocations.

  7. def diffInputs(store: CacheStore, style: Style): Difference

    Creates a tracker that provides the difference between a set of input files for successive invocations.

  8. def diffOutputs(cacheFile: File, style: Style): Difference

    Creates a tracker that provides the difference between a set of output files for successive invocations.

  9. def diffOutputs(store: CacheStore, style: Style): Difference

    Creates a tracker that provides the difference between a set of output files for successive invocations.

  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. 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))
  16. 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))
  17. 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 takes I: JsonWriter as opposed to I: JsonFormat.

  18. 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 takes I: JsonWriter as opposed to I: JsonFormat.

  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. 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

  21. 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

  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. 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))
  26. 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))
  27. 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 takes A1: JsonWriter as opposed to A1: JsonFormat.

  28. 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 takes A1: JsonWriter as opposed to A1: JsonFormat.

  29. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  30. def toString(): String
    Definition Classes
    AnyRef → Any
  31. 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.

  32. 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.

  33. 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.

  34. 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.

  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped