ResultSet.getRange.promise(options)
Method Description |
Method used to asynchronously retrieve a slice of the search result as an array of search.Result objects.
Note:
For information about the parameters and errors thrown for this method, see ResultSet.getRange(options). For additional information about promises, see Promise Object. |
Returns |
|
Synchronous Version |
|
Supported Script Types |
Client scripts For more information, see SuiteScript 2.x Script Types. |
Governance |
10 units |
Module |
|
Since |
2015.2 |
Syntax
The following code sample shows the syntax for this member. It is not a functional example. For a complete promise script example, see Promise Object.
//Add additional code
...
var results = rs.getRange.promise({
start: 0,
end: 1000
})
.then(function(response){
log.debug({
title: 'Completed',
details: response
});
})
.catch(function onRejected(reason) {
log.debug({
title: 'Failed: ',
details: reason
});
})
...
//Add additional code