Codota Logo
IoBridge.available
Code IndexAdd Codota to your IDE (free)

How to use
available
method
in
libcore.io.IoBridge

Best Java code snippets using libcore.io.IoBridge.available (Showing top 14 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
ScheduledThreadPoolExecutor s =
  • Codota Iconnew ScheduledThreadPoolExecutor(corePoolSize)
  • Codota IconThreadFactory threadFactory;new ScheduledThreadPoolExecutor(corePoolSize, threadFactory)
  • Codota IconString str;new ScheduledThreadPoolExecutor(1, new ThreadFactoryBuilder().setNameFormat(str).build())
  • Smart code suggestions by Codota
}
origin: robovm/robovm

@Override
public int available() throws IOException {
  return IoBridge.available(fd);
}
origin: robovm/robovm

@Override
protected synchronized int available() throws IOException {
  checkNotClosed();
  // we need to check if the input has been shutdown. If so
  // we should return that there is no data to be read
  if (shutdownInput) {
    return 0;
  }
  return IoBridge.available(fd);
}
origin: com.gluonhq/robovm-rt

@Override
public int available() throws IOException {
  return IoBridge.available(fd);
}
origin: FlexoVM/flexovm

@Override
public int available() throws IOException {
  return IoBridge.available(fd);
}
origin: MobiVM/robovm

@Override
public int available() throws IOException {
  return IoBridge.available(fd);
}
origin: ibinti/bugvm

@Override
public int available() throws IOException {
  return IoBridge.available(fd);
}
origin: com.mobidevelop.robovm/robovm-rt

@Override
public int available() throws IOException {
  return IoBridge.available(fd);
}
origin: com.bugvm/bugvm-rt

@Override
public int available() throws IOException {
  return IoBridge.available(fd);
}
origin: MobiVM/robovm

@Override
protected synchronized int available() throws IOException {
  checkNotClosed();
  // we need to check if the input has been shutdown. If so
  // we should return that there is no data to be read
  if (shutdownInput) {
    return 0;
  }
  return IoBridge.available(fd);
}
origin: ibinti/bugvm

@Override
protected synchronized int available() throws IOException {
  checkNotClosed();
  // we need to check if the input has been shutdown. If so
  // we should return that there is no data to be read
  if (shutdownInput) {
    return 0;
  }
  return IoBridge.available(fd);
}
origin: com.bugvm/bugvm-rt

@Override
protected synchronized int available() throws IOException {
  checkNotClosed();
  // we need to check if the input has been shutdown. If so
  // we should return that there is no data to be read
  if (shutdownInput) {
    return 0;
  }
  return IoBridge.available(fd);
}
origin: com.gluonhq/robovm-rt

@Override
protected synchronized int available() throws IOException {
  checkNotClosed();
  // we need to check if the input has been shutdown. If so
  // we should return that there is no data to be read
  if (shutdownInput) {
    return 0;
  }
  return IoBridge.available(fd);
}
origin: FlexoVM/flexovm

@Override
protected synchronized int available() throws IOException {
  checkNotClosed();
  // we need to check if the input has been shutdown. If so
  // we should return that there is no data to be read
  if (shutdownInput) {
    return 0;
  }
  return IoBridge.available(fd);
}
origin: com.mobidevelop.robovm/robovm-rt

@Override
protected synchronized int available() throws IOException {
  checkNotClosed();
  // we need to check if the input has been shutdown. If so
  // we should return that there is no data to be read
  if (shutdownInput) {
    return 0;
  }
  return IoBridge.available(fd);
}
libcore.ioIoBridgeavailable

Popular methods of IoBridge

  • bind
  • booleanFromInt
  • booleanToInt
  • closeSocket
  • connect
    Connects socket 'fd' to 'inetAddress' on 'port', with a the given 'timeoutMs'. Use timeoutMs == 0 fo
  • connectDetail
  • connectErrno
  • getSocketLocalAddress
  • getSocketLocalPort
  • getSocketOption
    java.net has its own socket options similar to the underlying Unix ones. We paper over the differenc
  • getSocketOptionErrno
  • isConnected
  • getSocketOptionErrno,
  • isConnected,
  • maybeThrowAfterRecvfrom,
  • maybeThrowAfterSendto,
  • open,
  • postRecvfrom,
  • read,
  • recvfrom,
  • sendto

Popular in Java

  • Making http post requests using okhttp
  • runOnUiThread (Activity)
  • startActivity (Activity)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • InputStreamReader (java.io)
    An InputStreamReader is a bridge from byte streams to character streams: It reads bytes and decodes
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate(i
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
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