Fix: Java agent: update ref count in enabledLoggers
[lttng-ust.git] / liblttng-ust-java-agent / java / org / lttng / ust / agent / LogFramework.java
CommitLineData
5b5ffa03 1/*
501f6777
CB
2 * Copyright (C) 2014 - Christian Babeux <christian.babeux@efficios.com>
3 *
5b5ffa03
DG
4 *
5 * This library is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU Lesser General Public License, version 2.1 only,
7 * as published by the Free Software Foundation.
8 *
9 * This library is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
12 * for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with this library; if not, write to the Free Software Foundation,
16 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
501f6777 19package org.lttng.ust.agent;
5b5ffa03 20
501f6777 21import java.util.Iterator;
5b5ffa03 22
501f6777
CB
23interface LogFramework {
24 Boolean enableLogger(String name);
25 Boolean disableLogger(String name);
26 Iterator<String> listLoggers();
27 Boolean isRoot();
28 void reset();
d09aa6cd 29 void setEnableRefCountDecrement(boolean enableRefCountDecrement);
5b5ffa03 30}
This page took 0.024092 seconds and 4 git commands to generate.