rxjava-slf4j-mdc-hook

An RxJava hook which enables SLF4J' MDC propagation.

Лицензия

Лицензия

Категории

Категории

SLF4J Библиотеки уровня приложения Logging RxJava Контейнер Микросервисы Reactive libraries
Группа

Группа

io.github.bmcstdio
Идентификатор

Идентификатор

rxjava-slf4j-mdc-hook
Последняя версия

Последняя версия

1.1.2
Дата

Дата

Тип

Тип

jar
Описание

Описание

rxjava-slf4j-mdc-hook
An RxJava hook which enables SLF4J' MDC propagation.
Ссылка на сайт

Ссылка на сайт

https://github.com/bmcstdio/rxjava-slf4j-mdc-hook
Система контроля версий

Система контроля версий

https://github.com/bmcstdio/rxjava-slf4j-mdc-hook.git

Скачать rxjava-slf4j-mdc-hook

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/io.github.bmcstdio/rxjava-slf4j-mdc-hook/ -->
<dependency>
    <groupId>io.github.bmcstdio</groupId>
    <artifactId>rxjava-slf4j-mdc-hook</artifactId>
    <version>1.1.2</version>
</dependency>
// https://jarcasting.com/artifacts/io.github.bmcstdio/rxjava-slf4j-mdc-hook/
implementation 'io.github.bmcstdio:rxjava-slf4j-mdc-hook:1.1.2'
// https://jarcasting.com/artifacts/io.github.bmcstdio/rxjava-slf4j-mdc-hook/
implementation ("io.github.bmcstdio:rxjava-slf4j-mdc-hook:1.1.2")
'io.github.bmcstdio:rxjava-slf4j-mdc-hook:jar:1.1.2'
<dependency org="io.github.bmcstdio" name="rxjava-slf4j-mdc-hook" rev="1.1.2">
  <artifact name="rxjava-slf4j-mdc-hook" type="jar" />
</dependency>
@Grapes(
@Grab(group='io.github.bmcstdio', module='rxjava-slf4j-mdc-hook', version='1.1.2')
)
libraryDependencies += "io.github.bmcstdio" % "rxjava-slf4j-mdc-hook" % "1.1.2"
[io.github.bmcstdio/rxjava-slf4j-mdc-hook "1.1.2"]

Зависимости

runtime (2)

Идентификатор библиотеки Тип Версия
org.slf4j : slf4j-api jar 1.7.22
io.reactivex : rxjava jar 1.2.6

Модули Проекта

Данный проект не имеет модулей.

rxjava-slf4j-mdc-hook

Build Status codecov

An RxJava hook which enables SLF4J's MDC propagation.

Usage

If you're using RxJava ≥ 1.1.7:

RxJavaHooks.setOnScheduleAction(new MdcPropagatingOnScheduleAction());

If you're using RxJava ≤ 1.1.6:

RxJavaPlugins.getInstance().registerSchedulersHook(new RxJavaSchedulersHook() {
  @Override
  public Action0 onSchedule(final Action0 action) {
    return new MdcPropagatingAction(action);
  }
});

Note: Both RxJavaPlugins#getInstance() and RxJavaSchedulersHook#onSchedule(Action0) are deprecated since 1.1.7.

Binaries

rxjava-slf4j-mdc-hook is available from both JCenter and Maven Central:

Gradle:

compile 'io.github.bmcstdio:rxjava-slf4j-mdc-hook:1.1.2'

Maven:

<dependency>
  <groupId>io.github.bmcstdio</groupId>
  <artifactId>rxjava-slf4j-mdc-hook</artifactId>
  <version>1.1.2</version>
</dependency>

Building

$ git clone https://github.com/brunomcustodio/rxjava-slf4j-mdc-hook.git
$ cd rxjava-slf4j-mdc-hook
$ ./gradlew build

License

Copyright 2016-2017 brunomcustodio

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Версии библиотеки

Версия
1.1.2
1.1.1
1.1.0
1.0.1
1.0.0