Functional Programming - Functional Interface

Imperative Vs Functional

Functional Programming - Functional Interface

About

A functional interface is a interface with only one single method that is the basic building block of functional programming.

In a event-driven process, a functional interface is called a event handler.

Type Default function signature
Supplier of data R get()
Intermediate (filter, map, …) R apply(S)
Consumer void apply(S)





Discover More
Card Puncher Data Processing
Data Processing - Operations / Operator

A data processing function takes an input and creates an output in a pipeline. transition in Automata functional interface in Functional Programming Filter in Data Processing (Shell and Log Pipeline)...
Card Puncher Data Processing
Event Handler

An event handler is a function that process events, which usually involves implementing a particular interface. Often, event handler are functional interfaces, they tend to have only one method.
Model Funny
Function - Callback function

A callback function iscalled back by the higher-order function that takes it as parameter. Callbacks is a method of enabling asynchrony (asynchronous operation). A callback is a function that is passed...
Imperative Vs Functional
Functional Programming / Collection - Filter

filtering in functional programming functional interface
Java Conceptuel Diagram
Java - Functional Interface

in Java. A functional interface is is a interface that contains only one abstract method. The interface is so simple that java defines several standard (built-in) functional interfaces Functional...



Share this page:
Follow us:
Task Runner