Interface BinaryMessageToBeSentAction


public interface BinaryMessageToBeSentAction
Extensions can implement this interface when returning a binary message from ProxyMessageHandler.handleBinaryMessageToBeSent(InterceptedBinaryMessage).
  • Method Details

    • action

      Returns:
      The action associated with this message.
    • payload

      ByteArray payload()
      Returns:
      The payload of this message.
    • continueWith

      static BinaryMessageToBeSentAction continueWith(ByteArray payload)
      Build a binary WebSocket message to continue through Burp.
      Parameters:
      payload - The binary message payload.
      Returns:
      The message.
    • continueWith

      static BinaryMessageToBeSentAction continueWith(BinaryMessage message)
      Build a binary WebSocket message to continue through Burp.
      Parameters:
      message - The binary message.
      Returns:
      The message.
    • drop

      Build a binary WebSocket message to be dropped.
      Returns:
      The message to be dropped.