Gets the name of the execution context.
import Batch = require("nativescript-batch");
var b = Batch.newBatch(function(ctx) {
console.log("context: " + ctx.context); // "execution"
}).success(function(ctx) {
console.log("context: " + ctx.context); // "success"
}).error(function(ctx) {
console.log("context: " + ctx.context); // "error"
}).complete(function(ctx) {
console.log("context: " + ctx.context); // "complete"
}).after(function(ctx) {
console.log("context: " + ctx.context); // "after"
}).before(function(ctx) {
console.log("context: " + ctx.context); // "before"
}).whenAllFinished(function(ctx) {
console.log("context: " + ctx.context); // "finished"
});
b.start();