30 lines
940 B
Markdown
30 lines
940 B
Markdown
---
|
|
layout: pattern
|
|
title: Callback
|
|
folder: callback
|
|
permalink: /patterns/callback/
|
|
pumlid: FSVB4S8m30N0Lg20M7UwUL4qYOciUFGXxSE9s-wp6sjjKgwF8tF6YyXnjxtdKMk5E5-MOjdu6jIrRYIStlXWsIJwRij4fhW53SGFn51TmIT9yZ-jVBHPGxy0
|
|
categories: Other
|
|
tags:
|
|
- Java
|
|
- Difficulty-Beginner
|
|
- Functional
|
|
- Idiom
|
|
---
|
|
|
|
## Intent
|
|
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.
|
|
|
|

|
|
|
|
## Applicability
|
|
Use the Callback pattern when
|
|
|
|
* when some arbitrary synchronous or asynchronous action must be performed after execution of some defined activity.
|
|
|
|
## Real world examples
|
|
|
|
* [CyclicBarrier](http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/CyclicBarrier.html#CyclicBarrier%28int,%20java.lang.Runnable%29) constructor can accept callback that will be triggered every time when barrier is tripped.
|