Class CefMessageRouter.CefMessageRouterConfig

  • Enclosing class:
    CefMessageRouter

    public static class CefMessageRouter.CefMessageRouterConfig
    extends java.lang.Object
    Used to configure the query router. If using multiple router pairs make sure to choose values that do not conflict.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.String jsCancelFunction
      Name of the JavaScript function that will be added to the 'window' object for canceling a pending query.
      java.lang.String jsQueryFunction
      Name of the JavaScript function that will be added to the 'window' object for sending a query.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • jsQueryFunction

        public java.lang.String jsQueryFunction
        Name of the JavaScript function that will be added to the 'window' object for sending a query. The default value is "cefQuery".
      • jsCancelFunction

        public java.lang.String jsCancelFunction
        Name of the JavaScript function that will be added to the 'window' object for canceling a pending query. The default value is "cefQueryCancel".
    • Constructor Detail

      • CefMessageRouterConfig

        public CefMessageRouterConfig()
      • CefMessageRouterConfig

        public CefMessageRouterConfig​(java.lang.String queryFunction,
                                      java.lang.String cancelFunction)