a64c6a9b36c06888b0b9f04961b3b4724127b41e
[lttng-ust.git] / liblttng-ust-jul / org / lttng / ust / jul / LTTngThread.java
1 /*
2 * Copyright (C) 2013 - David Goulet <dgoulet@efficios.com>
3 *
4 * This library is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU Lesser General Public License, version 2.1 only,
6 * as published by the Free Software Foundation.
7 *
8 * This library is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
11 * for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this library; if not, write to the Free Software Foundation,
15 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16 */
17
18 package org.lttng.ust.jul;
19
20 import java.util.concurrent.Semaphore;
21
22 public class LTTngThread implements Runnable {
23 private LTTngLogHandler handler;
24 private LTTngTCPSessiondClient sessiondClient;
25
26 public LTTngThread(String host, int port, LTTngLogHandler handler,
27 Semaphore registerSem) {
28 this.handler = handler;
29 this.sessiondClient = new LTTngTCPSessiondClient(host, port,
30 registerSem);
31 }
32
33 @Override
34 public void run() {
35 try {
36 this.sessiondClient.init(this.handler);
37 } catch (Exception e) {
38 e.printStackTrace();
39 }
40 }
41
42 public void dispose() {
43 this.sessiondClient.destroy();
44 }
45 }
This page took 0.029543 seconds and 3 git commands to generate.