-
Callbacks And Closure
Callbacks, closure and other things I wish to get out of life… but I digress. In programming, a callback is a function that gets passed into another function. In Java, this would look like; public class A { public void B (DoSomethingCallback callback) { // Does something .... // Something...