Interface ICallCefFuncVoid

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 ICallCefFuncVoid
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 have a void return.
Author:
swong
  • Method Summary

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

    • apply

      void 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