Files
architype/IdSource.js

20 lines
234 B
JavaScript
Raw Permalink Normal View History

2019-07-11 05:12:08 +00:00
class IdSource {
constructor() {
this.nextId_ = 1;
}
getId() {
return ++this.nextId_;
}
2019-07-11 22:30:53 +00:00
peekId() {
return this.nextId_;
}
2019-07-11 05:12:08 +00:00
setId(nextId) {
this.nextId_ = nextId;
}
}
const idSource = new IdSource();