Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Kotlin functions #1666

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Commits on Nov 7, 2024

  1. Add support for Kotlin functions

    This commit adds support for proper Kotlin functions handling
    by adapting kotlin.jvm.functions.Function1 to
    java.util.function.Function and
    kotlin.jvm.functions.Function2 to
    java.util.function.BiFunction.
    
    It also removes the dependency on Spring Cloud Function and
    net.jodah:typetools which are replaced by leveraging
    Spring Framework ResolvableType capabilities.
    sdeleuze committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    6155765 View commit details
    Browse the repository at this point in the history
  2. Add withInputType Kotlin extension

    This commit adds a Kotlin extension function for
    FunctionCallbackWrapper.Builder.withInputType allowing
    to specify withInputType<T>() instead of
    withInputType(T::class.java).
    sdeleuze committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    fe7d5e7 View commit details
    Browse the repository at this point in the history
  3. Add Kotlin documentation

    sdeleuze committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    37829dd View commit details
    Browse the repository at this point in the history