2015-08-13 23:54:40 +02:00
---
layout: pattern
title: Callback
folder: callback
2015-08-15 18:03:05 +02:00
permalink: /patterns/callback/
2019-12-13 21:09:28 +02:00
categories: Idiom
2021-05-19 10:49:05 -06:00
language: en
2015-12-28 15:52:44 +02:00
tags:
2019-12-13 21:09:28 +02:00
- Reactive
2015-08-13 23:54:40 +02:00
---
2016-01-03 21:14:30 +01:00
## Intent
2020-08-26 21:54:44 +03:00
Callback is a piece of executable code that is passed as an argument to other code, which is
expected to call back (execute) the argument at some convenient time.
2020-07-18 11:25:49 +03:00
## Explanation
Real world example
2020-08-26 21:54:44 +03:00
> We need to be notified after executing task has finished. We pass a callback method for
> the executor and wait for it to call back on us.
2020-07-18 11:25:49 +03:00
In plain words
> Callback is a method passed to the executor which will be called at defined moment.
Wikipedia says
2020-08-26 21:54:44 +03:00
> In computer programming, a callback, also known as a "call-after" function, is any executable
> code that is passed as an argument to other code; that other code is expected to call
> back (execute) the argument at a given time.
2020-07-18 11:25:49 +03:00
**Programmatic Example**
Callback is a simple interface with single method.
```java
public interface Callback {
void call();
}
```
Next we define a task that will execute the callback after the task execution has finished.
```java
public abstract class Task {
final void executeWith(Callback callback) {
execute();
Optional.ofNullable(callback).ifPresent(Callback::call);
}
public abstract void execute();
}
2021-03-13 13:19:21 +01:00
@Slf4j
2020-07-18 11:25:49 +03:00
public final class SimpleTask extends Task {
@Override
public void execute() {
LOGGER.info("Perform some important activity and after call the callback method.");
}
}
```
2020-08-26 21:54:44 +03:00
Finally, here's how we execute a task and receive a callback when it's finished.
2020-07-18 11:25:49 +03:00
```java
var task = new SimpleTask();
task.executeWith(() -> LOGGER.info("I'm done now."));
```
2015-08-13 23:54:40 +02:00
2019-12-07 20:01:13 +02:00
## Class diagram
2020-08-26 21:54:44 +03:00
2015-08-13 23:54:40 +02:00

2016-01-03 21:14:30 +01:00
## Applicability
2020-08-26 21:54:44 +03:00
2016-01-03 21:14:30 +01:00
Use the Callback pattern when
2015-08-13 23:54:40 +02:00
* when some arbitrary synchronous or asynchronous action must be performed after execution of some defined activity.
2016-01-03 21:14:30 +01:00
## Real world examples
2015-08-13 23:54:40 +02:00
2020-08-26 21:54:44 +03:00
* [CyclicBarrier ](http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/CyclicBarrier.html#CyclicBarrier%28int,%20java.lang.Runnable%29 ) constructor can accept a callback that will be triggered every time a barrier is tripped.