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

How to use
Output
in
org.glassfish.grizzly.streams

Best Java code snippets using org.glassfish.grizzly.streams.Output (Showing top 20 results out of 315)

origin: javaee/grizzly

@Override
public void writeInt(final int data) throws IOException {
  if (isOutputBuffered) {
    output.ensureBufferCapacity(4);
    output.getBuffer().putInt(data);
  } else {
    output.write((byte) ((data >>> 24) & 0xFF));
    output.write((byte) ((data >>> 16) & 0xFF));
    output.write((byte) ((data >>> 8) & 0xFF));
    output.write((byte) ((data) & 0xFF));
  }
}
origin: org.glassfish.grizzly/grizzly-websockets-server

/**
 * Cause the overflow handler to be called even if buffer is not full.
 */
@Override
public GrizzlyFuture<Integer> flush(CompletionHandler<Integer> completionHandler)
    throws IOException {
  return output.flush(completionHandler);
}
origin: org.glassfish.grizzly/grizzly-websockets-server

/** Create a new ByteBufferWriter.  An instance maintains a current buffer
 * for use in writing.  Whenever the current buffer is insufficient to hold
 * the required data, the BufferHandler is called, and the result of the
 * handler is the new current buffer. The handler is responsible for
 * the disposition of the contents of the old buffer.
 */
protected AbstractStreamWriter(final Connection connection,
    Output streamOutput) {
  this.connection = connection;
  this.output = streamOutput;
  this.isOutputBuffered = streamOutput.isBuffered();
}
origin: javaee/grizzly

    underlyingOutput.write(outputBuffer);
    transformer.release(attributeStorage);
  } else if (status == Status.INCOMPLETE) {
return underlyingOutput.flush(completionHandler);
origin: org.glassfish.grizzly/grizzly-websockets-server

/**
 * {@inheritDoc}
 */
@Override
public void writeBooleanArray(final boolean[] data) throws IOException {
  for(int i=0; i<data.length; i++) {
    output.write((byte) (data[i] ? 1 : 0));
  }
}
origin: javaee/grizzly

/**
 * {@inheritDoc}
 */
@Override
public GrizzlyFuture<Integer> close(
    CompletionHandler<Integer> completionHandler) throws IOException {
  if (!isClosed.getAndSet(true)) {
    return output.close(completionHandler);
  }
  return ReadyFutureImpl.create(0);
}
origin: javaee/grizzly

    underlyingOutput.write(outputBuffer);
    transformer.release(attributeStorage);
  } else if (status == Status.INCOMPLETE) {
return underlyingOutput.flush(completionHandler);
origin: javaee/grizzly

/**
 * {@inheritDoc}
 */
@Override
public void writeBuffer(Buffer b) throws IOException {
  output.write(b);
}
origin: javaee/grizzly

/**
 * {@inheritDoc}
 */
@Override
public GrizzlyFuture<Integer> close(
    CompletionHandler<Integer> completionHandler) throws IOException {
  if (!isClosed.getAndSet(true)) {
    return output.close(completionHandler);
  }
  return ReadyFutureImpl.create(0);
}
origin: javaee/grizzly

@Override
public void writeInt(final int data) throws IOException {
  if (isOutputBuffered) {
    output.ensureBufferCapacity(4);
    output.getBuffer().putInt(data);
  } else {
    output.write((byte) ((data >>> 24) & 0xFF));
    output.write((byte) ((data >>> 16) & 0xFF));
    output.write((byte) ((data >>> 8) & 0xFF));
    output.write((byte) ((data) & 0xFF));
  }
}
origin: org.mule.glassfish.grizzly/grizzly-framework

    underlyingOutput.write(outputBuffer);
    transformer.release(attributeStorage);
  } else if (status == Status.INCOMPLETE) {
return underlyingOutput.flush(completionHandler);
origin: javaee/grizzly

/**
 * {@inheritDoc}
 */
@Override
public void writeBuffer(Buffer b) throws IOException {
  output.write(b);
}
origin: javaee/grizzly

/**
 * {@inheritDoc}
 */
@Override
public GrizzlyFuture<Integer> close(
    CompletionHandler<Integer> completionHandler) throws IOException {
  if (!isClosed.getAndSet(true)) {
    return output.close(completionHandler);
  }
  return ReadyFutureImpl.create(0);
}
origin: javaee/grizzly

/** Create a new ByteBufferWriter.  An instance maintains a current buffer
 * for use in writing.  Whenever the current buffer is insufficient to hold
 * the required data, the BufferHandler is called, and the result of the
 * handler is the new current buffer. The handler is responsible for
 * the disposition of the contents of the old buffer.
 */
protected AbstractStreamWriter(final Connection connection,
    Output streamOutput) {
  this.connection = connection;
  this.output = streamOutput;
  this.isOutputBuffered = streamOutput.isBuffered();
}
origin: javaee/grizzly

/**
 * Cause the overflow handler to be called even if buffer is not full.
 */
@Override
public GrizzlyFuture<Integer> flush(CompletionHandler<Integer> completionHandler)
    throws IOException {
  return output.flush(completionHandler);
}
origin: javaee/grizzly

@Override
public void writeInt(final int data) throws IOException {
  if (isOutputBuffered) {
    output.ensureBufferCapacity(4);
    output.getBuffer().putInt(data);
  } else {
    output.write((byte) ((data >>> 24) & 0xFF));
    output.write((byte) ((data >>> 16) & 0xFF));
    output.write((byte) ((data >>> 8) & 0xFF));
    output.write((byte) ((data) & 0xFF));
  }
}
origin: org.glassfish.grizzly/grizzly-http-server-core

    underlyingOutput.write(outputBuffer);
    transformer.release(attributeStorage);
  } else if (status == Status.INCOMPLETE) {
return underlyingOutput.flush(completionHandler);
origin: javaee/grizzly

/**
 * {@inheritDoc}
 */
@Override
public void writeBooleanArray(final boolean[] data) throws IOException {
  for(int i=0; i<data.length; i++) {
    output.write((byte) (data[i] ? 1 : 0));
  }
}
origin: org.glassfish.grizzly/grizzly-websockets-server

/**
 * {@inheritDoc}
 */
@Override
public GrizzlyFuture<Integer> close(
    CompletionHandler<Integer> completionHandler) throws IOException {
  if (!isClosed.getAndSet(true)) {
    return output.close(completionHandler);
  }
  return ReadyFutureImpl.create(0);
}
origin: javaee/grizzly

/** Create a new ByteBufferWriter.  An instance maintains a current buffer
 * for use in writing.  Whenever the current buffer is insufficient to hold
 * the required data, the BufferHandler is called, and the result of the
 * handler is the new current buffer. The handler is responsible for
 * the disposition of the contents of the old buffer.
 */
protected AbstractStreamWriter(final Connection connection,
    Output streamOutput) {
  this.connection = connection;
  this.output = streamOutput;
  this.isOutputBuffered = streamOutput.isBuffered();
}
org.glassfish.grizzly.streamsOutput

Most used methods

  • close
    Close the StreamWriter and make sure all data was flushed.
  • ensureBufferCapacity
  • flush
    Make sure that all data that has been written is flushed from the stream to its destination.
  • getBuffer
    Return the Input's Buffer.
  • isBuffered
  • write

Popular in Java

  • Updating database using SQL prepared statement
  • getExternalFilesDir (Context)
  • getApplicationContext (Context)
  • findViewById (Activity)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • LinkedHashMap (java.util)
    LinkedHashMap is an implementation of Map that guarantees iteration order. All optional operations a
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement. A servlet is a small Java program that runs within
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Best IntelliJ 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