]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.server/src/org/simantics/db/server/protocol/ChangeSetUpdateEvent.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db.server / src / org / simantics / db / server / protocol / ChangeSetUpdateEvent.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.db.server.protocol;
13
14 import java.nio.ByteOrder;
15
16 public class ChangeSetUpdateEvent extends AbstractEvent {
17     public long changeSetId = 0;
18     public int changeSetIndex = 0;
19     public int numberOfClusterChangeSets = 0;
20     public int indexOfClusterChangeSet = 0;
21     public byte[] clusterUID = null;
22     public boolean newCluster = false;
23     public byte[] data = null;
24     public ChangeSetUpdateEvent() {
25         super(MessageNumber.ChangeSetUpdateRequest, MessageNumber.ChangeSetUpdateResponse);
26     }
27     @Override
28     public DataBuffer serialize(ByteOrder byteOrder) {
29         buffer.clear();
30         buffer.order(byteOrder);
31         buffer.mark();
32         return buffer;
33     }
34     @Override
35     public void deserialize(int receivedNumber_, DataBuffer dataBuffer) {
36         receivedNumber = receivedNumber_;
37         if (notRightDataForUs())
38             return;
39         changeSetId = dataBuffer.get(changeSetId);
40         changeSetIndex = dataBuffer.get(changeSetIndex);
41         numberOfClusterChangeSets = dataBuffer.get(numberOfClusterChangeSets);
42         indexOfClusterChangeSet = dataBuffer.get(indexOfClusterChangeSet);
43         clusterUID = dataBuffer.get(clusterUID);
44         newCluster = dataBuffer.get(newCluster);
45         data = dataBuffer.get(data);
46         gotResponse();
47     }
48 }