Tabnine Logo
Row.getEvent
Code IndexAdd Tabnine to your IDE (free)

How to use
getEvent
method
in
com.pivotal.gemfirexd.hadoop.mapreduce.Row

Best Java code snippets using com.pivotal.gemfirexd.hadoop.mapreduce.Row.getEvent (Showing top 12 results out of 315)

origin: io.snappydata/gemfirexd-core

/**
 * Returns persisted event instance contained in the result set row
 */
private PersistedEventImpl getEvent() throws IOException {
 // it is important to perform these steps on every invocation as the result
 // set advances outside this class
 final EmbedResultSet ers = this.ers;
 if (ers != null) {
  return getEvent(ers);
 }
 return null;
}
origin: io.snappydata/snappydata-store-core

/**
 * Get the type of DML operation that changed this row.
 * 
 * @return the type of this {@link Operation}.
 * @throws IOException
 */
public Type getEventType() throws IOException {
 final EmbedResultSet ers = this.ers;
 if (ers != null) {
  return getEventType(getEvent(ers));
 }
 else {
  return null;
 }
}
origin: io.snappydata/gemfirexd-core

/**
 * Get the type of DML operation that changed this row.
 * 
 * @return the type of this {@link Operation}.
 * @throws IOException
 */
public Type getEventType() throws IOException {
 final EmbedResultSet ers = this.ers;
 if (ers != null) {
  return getEventType(getEvent(ers));
 }
 else {
  return null;
 }
}
origin: io.snappydata/snappydata-store-core

/**
 * Returns persisted event instance contained in the result set row
 */
private PersistedEventImpl getEvent() throws IOException {
 // it is important to perform these steps on every invocation as the result
 // set advances outside this class
 final EmbedResultSet ers = this.ers;
 if (ers != null) {
  return getEvent(ers);
 }
 return null;
}
origin: io.snappydata/gemfirexd

/**
 * Get the type of DML operation that changed this row.
 * 
 * @return the type of this {@link Operation}.
 * @throws IOException
 */
public Type getEventType() throws IOException {
 final EmbedResultSet ers = this.ers;
 if (ers != null) {
  return getEventType(getEvent(ers));
 }
 else {
  return null;
 }
}
origin: io.snappydata/gemfirexd

/**
 * Returns persisted event instance contained in the result set row
 */
private PersistedEventImpl getEvent() throws IOException {
 // it is important to perform these steps on every invocation as the result
 // set advances outside this class
 final EmbedResultSet ers = this.ers;
 if (ers != null) {
  return getEvent(ers);
 }
 return null;
}
origin: io.snappydata/gemfirexd

/**
 * @return timestamp when this row operation was executed
 * @throws IOException
 */
public long getTimestamp() throws IOException {
 PersistedEventImpl event = getEvent();
 return event == null ? 0L : event.getTimstamp();
}
origin: io.snappydata/gemfirexd

/**
 * Indicates whether this row change event is a possibly duplicate. Duplicate
 * events may get persisted on HDFS when a fail-over happens during DML
 * statement execution.
 * 
 * @return true if the event is a possible duplicate.
 * @throws IOException 
 */
public boolean isPossibleDuplicate() throws IOException {
 PersistedEventImpl event = getEvent();
 return event == null ? false : event.isPossibleDuplicate();
}
origin: io.snappydata/gemfirexd-core

/**
 * Indicates whether this row change event is a possibly duplicate. Duplicate
 * events may get persisted on HDFS when a fail-over happens during DML
 * statement execution.
 * 
 * @return true if the event is a possible duplicate.
 * @throws IOException 
 */
public boolean isPossibleDuplicate() throws IOException {
 PersistedEventImpl event = getEvent();
 return event == null ? false : event.isPossibleDuplicate();
}
origin: io.snappydata/snappydata-store-core

/**
 * @return timestamp when this row operation was executed
 * @throws IOException
 */
public long getTimestamp() throws IOException {
 PersistedEventImpl event = getEvent();
 return event == null ? 0L : event.getTimstamp();
}
origin: io.snappydata/gemfirexd-core

/**
 * @return timestamp when this row operation was executed
 * @throws IOException
 */
public long getTimestamp() throws IOException {
 PersistedEventImpl event = getEvent();
 return event == null ? 0L : event.getTimstamp();
}
origin: io.snappydata/snappydata-store-core

/**
 * Indicates whether this row change event is a possibly duplicate. Duplicate
 * events may get persisted on HDFS when a fail-over happens during DML
 * statement execution.
 * 
 * @return true if the event is a possible duplicate.
 * @throws IOException 
 */
public boolean isPossibleDuplicate() throws IOException {
 PersistedEventImpl event = getEvent();
 return event == null ? false : event.isPossibleDuplicate();
}
com.pivotal.gemfirexd.hadoop.mapreduceRowgetEvent

Javadoc

Returns persisted event instance contained in the result set row

Popular methods of Row

  • <init>
  • createGcdArray
  • getDvdArray
    Returns array of DVD objects for this row. DVDs will be null when Row is created by RowInputFormat.
  • getEventType
  • getGcdArray
    Returns array of GCD objects for this row. GCD will be null when Row is created by RowInputFormat. I
  • getRowAsResultSet
    Get the changed row as a ResultSet#TYPE_FORWARD_ONLYResultSet. The returned ResultSet is already pos
  • getTimestamp

Popular in Java

  • Reading from database using SQL prepared statement
  • addToBackStack (FragmentTransaction)
  • setRequestProperty (URLConnection)
  • runOnUiThread (Activity)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • Top Sublime Text plugins
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