object ProtocBridge
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ProtocBridge
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
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 execute[ExitCode](protoc: ProtocRunner[ExitCode], targets: Seq[Target], params: Seq[String], classLoader: (Artifact) => ClassLoader): ExitCode
Runs protoc with a given set of targets.
Runs protoc with a given set of targets.
- protoc
a function that runs protoc with the given command line arguments.
- targets
a sequence of generators to invokes
- params
a sequence of additional params to pass to protoc
- classLoader
function that provided a sandboxed ClassLoader for an artifact.
- returns
the return value from the protoc function.
- 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()
- def runWithGenerators[ExitCode](protoc: ProtocRunner[ExitCode], namedGenerators: Seq[(String, ProtocCodeGenerator)], params: Seq[String]): ExitCode
- 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
- def run[ExitCode](protoc: (Seq[String]) => ExitCode, targets: Seq[Target], params: Seq[String], pluginFrontend: PluginFrontend, classLoader: (Artifact) => ClassLoader): ExitCode
- Annotations
- @deprecated
- Deprecated
(Since version 0.9.0) Please use execute(). Secondary outputs will fail to work.
- def run[ExitCode](protoc: (Seq[String]) => ExitCode, targets: Seq[Target], params: Seq[String], pluginFrontend: PluginFrontend): ExitCode
- Annotations
- @deprecated
- Deprecated
(Since version 0.9.0) Please use execute() overload that takes ProtocRunner. Secondary outputs will fail to work.
- def run[A](protoc: (Seq[String]) => A, targets: Seq[Target], params: Seq[String]): A
- Annotations
- @deprecated
- Deprecated
(Since version 0.9.0) Please use execute() overload that takes ProtocRunner. Secondary outputs will fail to work.
- def runWithGenerators[ExitCode](protoc: (Seq[String]) => ExitCode, namedGenerators: Seq[(String, ProtocCodeGenerator)], params: Seq[String], pluginFrontend: PluginFrontend = PluginFrontend.newInstance): ExitCode
- Annotations
- @deprecated
- Deprecated
(Since version 0.9.0) Please use execute(). Secondary outputs will fail to work.