trait ClearableLinker extends Linker
A box around a Linker to support clearing.
Calling clear()
completely resets the state of this ClearableLinker
, so
that it can be used again without being affected by previous calls to
link
, even of those would have corrupted the internal state.
In addition to the contract of Linker, if {{Linker.link}} throws an
exception, the ClearableLinker
is automatically clear()
'ed.
Implementations are allowed to automatically clear()
in other cases, but
never while a linking is in progress.
Unless otherwise specified, instances of this trait are not thread-safe.
- Alphabetic
- By Inheritance
- ClearableLinker
- Linker
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def clear(): Unit
Completely resets the state of this
ClearableLinker
.Completely resets the state of this
ClearableLinker
.After calling this method, this
ClearableLinker
, it can be used again without being affected by previous calls tolink
, even of those would have corrupted the internal state. - abstract def link(irFiles: Seq[IRFile], moduleInitializers: Seq[ModuleInitializer], output: OutputDirectory, logger: Logger)(implicit ec: ExecutionContext): Future[Report]
- Definition Classes
- Linker
Concrete 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(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- 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()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
Deprecated Value Members
- final def link(irFiles: Seq[IRFile], moduleInitializers: Seq[ModuleInitializer], output: LinkerOutput, logger: Logger)(implicit ec: ExecutionContext): Future[Unit]
- Definition Classes
- Linker
- Annotations
- @deprecated
- Deprecated
(Since version 1.3.0) Use the overload taking an OutputDirectory instead