gdbtrace: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.control.core / src / org / eclipse / linuxtools / internal / lttng2 / control / core / relayd / lttngviewerCommands / NewStreamsReturnCode.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
14package org.eclipse.linuxtools.internal.lttng2.control.core.relayd.lttngviewerCommands;
15
16/**
17 * Return codes for "new streams" command
18 *
19 * @author Matthew Khouzam
20 * @since 3.0
21 */
22public enum NewStreamsReturnCode implements IBaseCommand {
23
24 /** If new streams are being sent. */
25 LTTNG_VIEWER_NEW_STREAMS_OK(1),
26 /** If no new streams are available. */
27 LTTNG_VIEWER_NEW_STREAMS_NO_NEW(2),
28 /** Error. */
29 LTTNG_VIEWER_NEW_STREAMS_ERR(3),
30 /** Session closed. */
31 LTTNG_VIEWER_NEW_STREAMS_HUP(4);
32
33 private final int fCode;
34
35 private NewStreamsReturnCode(int c) {
36 fCode = c;
37 }
38
39 @Override
40 public int getCommand() {
41 return fCode;
42 }
43}
This page took 0.030952 seconds and 5 git commands to generate.