(long eventId)
| 141 | public long getCreateEventId() { return createEventId_; } |
| 142 | |
| 143 | public void setCreateEventId(long eventId) { |
| 144 | // TODO: Add a preconditions check for eventId < lastSycnedEventId |
| 145 | createEventId_ = eventId; |
| 146 | LOG.debug("createEventId_ for db: {} set to: {}", getName(), createEventId_); |
| 147 | if (lastSyncedEventId_ < eventId) { |
| 148 | setLastSyncedEventId(eventId); |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | public long getLastSyncedEventId() { |
| 153 | return lastSyncedEventId_; |
no test coverage detected