Sets the (display) name of the underlying batch.

import Batch = require("nativescript-batch");

var b = Batch.newBatch(function(ctx) {
    console.log("Batch name: " + ctx.batchName);
}).setBatchName("My batch");

b.start();