Codota Logo
ProgressMonitorListener.setTaskName
Code IndexAdd Codota to your IDE (free)

How to use
setTaskName
method
in
org.pentaho.di.core.ProgressMonitorListener

Best Java code snippets using org.pentaho.di.core.ProgressMonitorListener.setTaskName (Showing top 2 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
OutputStreamWriter o =
  • Codota IconOutputStream out;new OutputStreamWriter(out)
  • Codota IconOutputStream out;String charsetName;new OutputStreamWriter(out, charsetName)
  • Codota IconHttpURLConnection connection;new OutputStreamWriter(connection.getOutputStream())
  • Smart code suggestions by Codota
}
origin: pentaho/pentaho-kettle

 @Override
 public void setTaskName( String taskName ) {
  monitor.setTaskName( taskName );
 }
}
origin: pentaho/pentaho-kettle

/**
 * Reads the result of an SQL query into an ArrayList.
 *
 * @param sql            The SQL to launch
 * @param params         The types of any parameters to be passed to the query
 * @param data           The values of any parameters to be passed to the query
 * @param fetch_mode     The fetch mode for the query (ResultSet.FETCH_FORWARD, e.g.)
 * @param lazyConversion Whether to perform lazy conversion of the values
 * @param limit          <=0 means unlimited, otherwise this specifies the maximum number of rows read.
 * @param monitor        The progress monitor to update while getting the rows.
 * @return An ArrayList of rows.
 * @throws KettleDatabaseException if something goes wrong.
 */
public List<Object[]> getRows( String sql, RowMetaInterface params, Object[] data, int fetch_mode,
                boolean lazyConversion, int limit, ProgressMonitorListener monitor )
 throws KettleDatabaseException {
 if ( monitor != null ) {
  monitor.setTaskName( "Opening query..." );
 }
 ResultSet rset = openQuery( sql, params, data, fetch_mode, lazyConversion );
 return getRows( rset, limit, monitor );
}
org.pentaho.di.coreProgressMonitorListenersetTaskName

Popular methods of ProgressMonitorListener

  • subTask
  • worked
  • beginTask
  • done
  • isCanceled

Popular in Java

  • Creating JSON documents from java classes using gson
  • getExternalFilesDir (Context)
  • orElseThrow (Optional)
  • notifyDataSetChanged (ArrayAdapter)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • StringTokenizer (java.util)
    The string tokenizer class allows an application to break a string into tokens. The tokenization met
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • ImageIO (javax.imageio)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now