Tabnine Logo
RxQuery.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.greenrobot.greendao.rx.RxQuery
constructor

Best Java code snippets using org.greenrobot.greendao.rx.RxQuery.<init> (Showing top 4 results out of 315)

origin: greenrobot/greenDAO

  /**
   * DO NOT USE.
   * The returned {@link RxTransaction} allows getting query results using Rx Observables using RX's IO scheduler for
   * subscribeOn.
   *
   * @see #__internalRxPlain()
   */
  @Internal
  public RxQuery __InternalRx() {
    if (rxTxIo == null) {
      rxTxIo = new RxQuery(this, Schedulers.io());
    }
    return rxTxIo;
  }
}
origin: greenrobot/greenDAO

/**
 * DO NOT USE.
 * The returned {@link RxTransaction} allows getting query results using Rx Observables without any Scheduler set
 * for subscribeOn.
 *
 * @see #__InternalRx()
 */
@Internal
public RxQuery __internalRxPlain() {
  if (rxTxPlain == null) {
    rxTxPlain = new RxQuery(this);
  }
  return rxTxPlain;
}
origin: org.greenrobot/greendao

/**
 * DO NOT USE.
 * The returned {@link RxTransaction} allows getting query results using Rx Observables without any Scheduler set
 * for subscribeOn.
 *
 * @see #__InternalRx()
 */
@Internal
public RxQuery __internalRxPlain() {
  if (rxTxPlain == null) {
    rxTxPlain = new RxQuery(this);
  }
  return rxTxPlain;
}
origin: org.greenrobot/greendao

  /**
   * DO NOT USE.
   * The returned {@link RxTransaction} allows getting query results using Rx Observables using RX's IO scheduler for
   * subscribeOn.
   *
   * @see #__internalRxPlain()
   */
  @Internal
  public RxQuery __InternalRx() {
    if (rxTxIo == null) {
      rxTxIo = new RxQuery(this, Schedulers.io());
    }
    return rxTxIo;
  }
}
org.greenrobot.greendao.rxRxQuery<init>

Popular methods of RxQuery

  • list
    Rx version of Query#list() returning an Observable.
  • oneByOne
    Emits the resulting entities one by one, producing them on the fly ("streaming" entities). Unlike #l
  • wrap
  • unique
    Rx version of Query#unique() returning an Observable.

Popular in Java

  • Reading from database using SQL prepared statement
  • startActivity (Activity)
  • getSharedPreferences (Context)
  • addToBackStack (FragmentTransaction)
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • Path (java.nio.file)
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • IsNull (org.hamcrest.core)
    Is the value null?
  • Best plugins for Eclipse
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