IndexReucEntry.add
IndexReucEntry.add(index, path, ancestor_mode, ancestor_id, our_mode, our_id, their_mode, their_id).then(function(result) {
// Use result
});
| Parameters | Type | |
|---|---|---|
| index | Index | |
| path | String | |
| ancestor_mode | Number | |
| ancestor_id | Oid | |
| our_mode | Number | |
| our_id | Oid | |
| their_mode | Number | |
| their_id | Oid |
| Returns | |
|---|---|
| Number |
IndexReucEntry.clear
IndexReucEntry.clear(index).then(function() {
// method complete});
| Parameters | Type | |
|---|---|---|
| index | Index |
IndexReucEntry.entryCount
var result = IndexReucEntry.entryCount(index);
| Parameters | Type | |
|---|---|---|
| index | Index |
| Returns | |
|---|---|
| Number |
IndexReucEntry.find
IndexReucEntry.find(index, path).then(function(result) {
// Use result
});
| Parameters | Type | |
|---|---|---|
| index | Index | |
| path | String |
| Returns | |
|---|---|
| Number |
IndexReucEntry.getByIndex
var indexReucEntry = IndexReucEntry.getByIndex(index, n);
| Parameters | Type | |
|---|---|---|
| index | Index | |
| n | Number |
| Returns | |
|---|---|
| IndexReucEntry |
IndexReucEntry.getByPath
var indexReucEntry = IndexReucEntry.getByPath(index, path);
| Parameters | Type | |
|---|---|---|
| index | Index | |
| path | String |
| Returns | |
|---|---|
| IndexReucEntry |
IndexReucEntry.remove
IndexReucEntry.remove(index, n).then(function(result) {
// Use result
});
| Parameters | Type | |
|---|---|---|
| index | Index | |
| n | Number |
| Returns | |
|---|---|
| Number |
Instance Variables
| Variable | Type | Description |
|---|---|---|
| mode | Number | |
| oid | Oid | |
| path | String |