Class VirtualMachine.ForHotSpot.Connection.OnPersistentByteChannel.Response

java.lang.Object
net.bytebuddy.agent.VirtualMachine.ForHotSpot.Connection.OnPersistentByteChannel.Response
All Implemented Interfaces:
Closeable, AutoCloseable, VirtualMachine.ForHotSpot.Connection.Response
Enclosing class:
VirtualMachine.ForHotSpot.Connection.OnPersistentByteChannel<T>

private class VirtualMachine.ForHotSpot.Connection.OnPersistentByteChannel.Response extends Object implements VirtualMachine.ForHotSpot.Connection.Response
A response of a persistent byte channel.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final T
    The connection representing this response.
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    private
    Response(T connection)
    Creates a new response for a persistent byte channel.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    int
    read(byte[] buffer)
    Reads a buffer from the target VM.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • connection

      private final T connection
      The connection representing this response.
  • Constructor Details

    • Response

      private Response(T connection)
      Creates a new response for a persistent byte channel.
      Parameters:
      connection - The connection representing this response.
  • Method Details