Sets the ID of the underlying batch.
import Batch = require("nativescript-batch");
var b = Batch.newBatch(function(ctx) {
console.log("Batch ID: " + ctx.batchId);
}).setBatchId("MyBatch");
b.start();
Sets the ID of the underlying batch.
import Batch = require("nativescript-batch");
var b = Batch.newBatch(function(ctx) {
console.log("Batch ID: " + ctx.batchId);
}).setBatchId("MyBatch");
b.start();