ctf: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.lttng2.control.core / src / org / eclipse / tracecompass / internal / lttng2 / control / core / relayd / commands / Command.java
CommitLineData
8e15b929
MK
1/**********************************************************************
2 * Copyright (c) 2014 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Matthew Khouzam - Initial implementation and API
11 * Marc-Andre Laperle - Initial implementation and API
12 **********************************************************************/
13
41b4bff4 14package org.eclipse.tracecompass.internal.lttng2.control.core.relayd.commands;
8e15b929
MK
15
16/**
17 * Viewer commands
18 *
19 * @author Matthew Khouzam
8e15b929
MK
20 */
21public enum Command implements IBaseCommand {
22
23 /** get version */
24 VIEWER_CONNECT(1),
25 /** list all lttng sessions */
26 VIEWER_LIST_SESSIONS(2),
27 /** attach to a session */
28 VIEWER_ATTACH_SESSION(3),
29 /** get the next index */
30 VIEWER_GET_NEXT_INDEX(4),
31 /** get packet */
32 VIEWER_GET_PACKET(5),
33 /** get metadata */
34 VIEWER_GET_METADATA(6),
35 /** get new streams */
36 VIEWER_GET_NEW_STREAMS(7),
37 /** create a new session */
38 VIEWER_CREATE_SESSION(8);
39
40 /**
8adfbb73 41 * Command size (fCode)
8e15b929
MK
42 */
43 public static final int SIZE = Integer.SIZE / 8;
44
45 private final int fCode;
46
47 private Command(int c) {
48 fCode = c;
49 }
50
51 @Override
52 public int getCommand() {
53 return fCode;
54 }
55}
This page took 0.045709 seconds and 5 git commands to generate.