blob: d82898881741d7a1b2833d3e4d38eb9450459c18 [file] [log] [blame]
Jonathan Hart4fd4ebb2015-02-04 17:38:48 -08001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.store.intent.impl;
17
18import org.onosproject.net.intent.IntentData;
19import org.onosproject.store.Timestamp;
Jonathan Hart6ec029a2015-03-24 17:12:35 -070020import org.onosproject.store.service.ClockService;
Jonathan Hart63939a32015-05-08 11:57:03 -070021import org.onosproject.store.service.MultiValuedTimestamp;
Jonathan Hart4fd4ebb2015-02-04 17:38:48 -080022
23/**
Jonathan Hart5ec32ba2015-02-05 13:33:58 -080024 * ClockService that uses IntentData versions as timestamps.
Jonathan Hart4fd4ebb2015-02-04 17:38:48 -080025 */
Jonathan Hart5ec32ba2015-02-05 13:33:58 -080026public class IntentDataClockManager<K> implements ClockService<K, IntentData> {
Jonathan Hart4fd4ebb2015-02-04 17:38:48 -080027 @Override
Jonathan Hart5ec32ba2015-02-05 13:33:58 -080028 public Timestamp getTimestamp(K key, IntentData intentData) {
Jonathan Hart83247f02015-02-24 13:32:26 -080029 return new MultiValuedTimestamp<>(intentData.version(), System.nanoTime());
Jonathan Hart4fd4ebb2015-02-04 17:38:48 -080030 }
31}