Interface ProxyWebSocketHistoryFilter


public interface ProxyWebSocketHistoryFilter
Extensions can implement this interface and then call Proxy.webSocketHistory(ProxyWebSocketHistoryFilter) to get a filtered list of items in the Proxy WebSockets history.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    This method is invoked for every item in the Proxy WebSockets history to determine whether it should be included in the filtered list of items.
  • Method Details

    • matches

      boolean matches(ProxyWebSocketMessage message)
      This method is invoked for every item in the Proxy WebSockets history to determine whether it should be included in the filtered list of items.
      Parameters:
      message - A ProxyWebSocketMessage object that extensions can use to determine whether the item should be included in the filtered list of items.
      Returns:
      Return true if the item should be included in the filtered list of items.