]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.server/src/org/simantics/db/server/protocol/GetRefresh2Function.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db.server / src / org / simantics / db / server / protocol / GetRefresh2Function.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 GetRefresh2Function extends AbstractFunction {
17     public long changeSetId = 0;
18     public long headChangeSetId = 0;
19     public long[] first = null;
20     public long[] second = null;
21     public GetRefresh2Function() {
22         super(MessageNumber.GetRefresh2Request, MessageNumber.GetRefresh2Response);
23     }
24     public GetRefresh2Function(long changeSetId) {
25         super(MessageNumber.GetRefresh2Request, MessageNumber.GetRefresh2Response);
26         this.changeSetId = changeSetId;
27     }
28     @Override
29     public DataBuffer serialize(ByteOrder byteOrder) {
30         buffer.clear();
31         buffer.order(byteOrder);
32         buffer.put(changeSetId);
33         buffer.mark();
34         return buffer;
35     }
36     @Override
37     public void deserialize(int receivedNumber_, DataBuffer dataBuffer) {
38         receivedNumber = receivedNumber_;
39         if (notRightDataForUs())
40             return;
41         headChangeSetId = dataBuffer.get(headChangeSetId);
42         first = dataBuffer.get(first);
43         second = dataBuffer.get(second);
44         gotResponse();
45     }
46 }