Interface GenerateThriftSourcesWorkParams

All Superinterfaces:
org.gradle.workers.WorkParameters

public interface GenerateThriftSourcesWorkParams extends org.gradle.workers.WorkParameters
Encapsulates all input to Thrifty compilation, in a Serializable form.
  • Nested Class Summary

    Nested classes/interfaces inherited from interface org.gradle.workers.WorkParameters

    org.gradle.workers.WorkParameters.None
  • Method Summary

    Modifier and Type
    Method
    Description
    org.gradle.api.provider.ListProperty<File>
     
    org.gradle.api.file.DirectoryProperty
     
    org.gradle.api.provider.Property<org.gradle.api.logging.configuration.ShowStacktrace>
     
    org.gradle.api.file.ConfigurableFileCollection
     
    org.gradle.api.provider.Property<com.microsoft.thrifty.gradle.SerializableThriftOptions>
     
  • Method Details

    • getOutputDirectory

      org.gradle.api.file.DirectoryProperty getOutputDirectory()
    • getIncludePath

      org.gradle.api.provider.ListProperty<File> getIncludePath()
    • getSource

      org.gradle.api.file.ConfigurableFileCollection getSource()
    • getThriftOptions

      org.gradle.api.provider.Property<com.microsoft.thrifty.gradle.SerializableThriftOptions> getThriftOptions()
    • getShowStacktrace

      org.gradle.api.provider.Property<org.gradle.api.logging.configuration.ShowStacktrace> getShowStacktrace()