atomic-storage: remove type dependency at segment level I/O
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / ShardReadWriteTransaction.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.cluster.datastore;
9
10 import akka.actor.ActorRef;
11 import org.opendaylight.controller.cluster.datastore.messages.DataExists;
12 import org.opendaylight.controller.cluster.datastore.messages.ReadData;
13
14 /**
15  * Actor for a shard read/write transaction.
16  *
17  * @author syedbahm
18  */
19 @Deprecated(since = "9.0.0", forRemoval = true)
20 public class ShardReadWriteTransaction extends ShardWriteTransaction {
21     public ShardReadWriteTransaction(final ReadWriteShardDataTreeTransaction transaction, final ActorRef shardActor,
22             final ShardStats shardStats) {
23         super(transaction, shardActor, shardStats);
24     }
25
26     @Override
27     public void handleReceive(final Object message) {
28         if (ReadData.isSerializedType(message)) {
29             readData(ReadData.fromSerializable(message));
30         } else if (DataExists.isSerializedType(message)) {
31             dataExists((DataExists) message);
32         } else {
33             super.handleReceive(message);
34         }
35     }
36 }