Sets the number of operations to skip.
import Batch = require("nativescript-batch");
var b = Batch.newBatch(function(ctx) {
ctx.skip(2);
}).then(function(ctx) {
// [1] NOT invoked
}).then(function(ctx) {
// [2] NOT invoked
}).then(function(ctx) {
// [3] invoked
}).then(function(ctx) {
// [4] invoked
});
b.start();