Tabnine Logo
PipelineSpec
Code IndexAdd Tabnine to your IDE (free)

How to use
PipelineSpec
in
co.cask.cdap.etl.spec

Best Java code snippets using co.cask.cdap.etl.spec.PipelineSpec (Showing top 4 results out of 315)

origin: co.cask.cdap/cdap-data-streams

@Override
public int hashCode() {
 return Objects.hash(super.hashCode(), batchIntervalMillis, extraJavaOpts,
           stopGracefully, checkpointsDisabled, isUnitTest, checkpointDirectory);
}
origin: co.cask.cdap/cdap-data-streams

@Override
public String toString() {
 return "DataStreamsPipelineSpec{" +
  "batchIntervalMillis=" + batchIntervalMillis +
  ", extraJavaOpts='" + extraJavaOpts + '\'' +
  ", stopGracefully=" + stopGracefully +
  ", checkpointsDisabled=" + checkpointsDisabled +
  ", isUnitTest=" + isUnitTest +
  ", checkpointDirectory='" + checkpointDirectory + '\'' +
  "} " + super.toString();
}
origin: co.cask.cdap/cdap-data-streams

@Override
public boolean equals(Object o) {
 if (this == o) {
  return true;
 }
 if (o == null || getClass() != o.getClass()) {
  return false;
 }
 if (!super.equals(o)) {
  return false;
 }
 DataStreamsPipelineSpec that = (DataStreamsPipelineSpec) o;
 return batchIntervalMillis == that.batchIntervalMillis &&
  Objects.equals(extraJavaOpts, that.extraJavaOpts) &&
  stopGracefully == that.stopGracefully &&
  checkpointsDisabled == that.checkpointsDisabled &&
  isUnitTest == that.isUnitTest &&
  Objects.equals(checkpointDirectory, that.checkpointDirectory);
}
origin: co.cask.cdap/cdap-etl-realtime

PipelineSpec spec = specGenerator.generateSpec(config);
int sourceCount = 0;
for (StageSpec stageSpec : spec.getStages()) {
 if (RealtimeSource.PLUGIN_TYPE.equals(stageSpec.getPlugin().getType())) {
  sourceCount++;
co.cask.cdap.etl.specPipelineSpec

Most used methods

  • equals
  • getStages
  • hashCode
  • toString

Popular in Java

  • Making http requests using okhttp
  • scheduleAtFixedRate (Timer)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getApplicationContext (Context)
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • JComboBox (javax.swing)
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now