]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.server/src/org/simantics/db/server/protocol/ListClustersFunction.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db.server / src / org / simantics / db / server / protocol / ListClustersFunction.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 ListClustersFunction extends AbstractFunction {
17     public int option = 0;
18     public int status = 0;
19     public long[] first = null;
20     public long[] second = null;
21     public ListClustersFunction() {
22         super(MessageNumber.ListClustersRequest, MessageNumber.ListClustersResponse);
23     }
24     public ListClustersFunction(int option) {
25         super(MessageNumber.ListClustersRequest, MessageNumber.ListClustersResponse);
26         this.option = option;
27     }
28     @Override
29     public DataBuffer serialize(ByteOrder byteOrder) {
30         buffer.clear();
31         buffer.order(byteOrder);
32         buffer.put(option);
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         status = dataBuffer.get(status);
42         first = dataBuffer.get(first);
43         second = dataBuffer.get(second);
44         gotResponse();
45     }
46 }