Interface ICallCefFunc

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface
public interface ICallCefFunc
FOR INTERNAL USE ONLY!! DEVELOPER CODE SHOULD NEVER USE THIS INTERFACE OR ANY IMPLEMENTATION OF IT! Represents an arbitrary call to a Javascript function as a Java functional entity. The Javascript function is assumed to return a Javascript object.
Author:
swong
  • Method Summary

    Modifier and Type Method Description
    ICefObject apply​(java.lang.String jsFuncName, java.lang.Object... params)  
  • Method Details

    • apply

      ICefObject apply​(java.lang.String jsFuncName, java.lang.Object... params)
      Parameters:
      jsFuncName - The name of the Javascript function to call
      params - The vararg parameters to pass to the function call
      Returns:
      The Javascript object return value of the Javascript function.