Package | Description |
---|---|
com.hazelcast.logging |
This package contains logging functionality for Hazelcast.
Since Hazelcast has a zero dependency policy, Hazelcast provides a logging abstraction like commons logging, so that different logging frameworks like log4j, can be hooked in. |
com.hazelcast.spi.discovery |
This package contains the public SPI for vendors and users to implement their
custom node / IP discovery strategy.
|
com.hazelcast.spi.discovery.integration |
This package contains the public part of the integrators SPI and is meant for
people that integrate Hazelcast into their own systems or frameworks and cannot
use the default discovery service implementation (for example using a different
DiscoveryStrategy lookup strategy like OSGi). |
com.hazelcast.spi.discovery.multicast |
Contains the hazelcast multicast plugin classes
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractLogger
Abstract
ILogger implementation that provides implementations for convenience methods like
finest, info, warning and severe. |
static class |
Log4j2Factory.Log4j2Logger |
Modifier and Type | Method and Description |
---|---|
protected ILogger |
Log4jFactory.createLogger(String name) |
protected ILogger |
Log4j2Factory.createLogger(String name) |
protected ILogger |
StandardLoggerFactory.createLogger(String name) |
protected abstract ILogger |
LoggerFactorySupport.createLogger(String name) |
protected ILogger |
Slf4jFactory.createLogger(String name) |
static ILogger |
Logger.getLogger(Class clazz)
Obtains a
logger for the given clazz . |
ILogger |
LoggingService.getLogger(Class type) |
ILogger |
NoLogFactory.getLogger(String name) |
ILogger |
LoggerFactorySupport.getLogger(String name) |
ILogger |
LoggerFactory.getLogger(String name) |
static ILogger |
Logger.getLogger(String name)
Obtains a
logger of the given name . |
ILogger |
LoggingService.getLogger(String name) |
static ILogger |
Logger.noLogger() |
Modifier and Type | Method and Description |
---|---|
protected ILogger |
AbstractDiscoveryStrategy.getLogger()
Returns a
ILogger instance bound to the current class. |
Modifier and Type | Method and Description |
---|---|
DiscoveryStrategy |
DiscoveryStrategyFactory.newDiscoveryStrategy(DiscoveryNode discoveryNode,
ILogger logger,
Map<String,Comparable> properties)
Instantiates a new instance of the
DiscoveryStrategy with the given configuration
properties. |
Constructor and Description |
---|
AbstractDiscoveryStrategy(ILogger logger,
Map<String,Comparable> properties) |
Modifier and Type | Method and Description |
---|---|
ILogger |
DiscoveryServiceSettings.getLogger() |
Modifier and Type | Method and Description |
---|---|
DiscoveryServiceSettings |
DiscoveryServiceSettings.setLogger(ILogger logger) |
Modifier and Type | Method and Description |
---|---|
DiscoveryStrategy |
MulticastDiscoveryStrategyFactory.newDiscoveryStrategy(DiscoveryNode discoveryNode,
ILogger logger,
Map<String,Comparable> prop) |
Constructor and Description |
---|
MulticastDiscoveryStrategy(DiscoveryNode discoveryNode,
ILogger logger,
Map<String,Comparable> properties) |
Copyright © 2021 Hazelcast, Inc.. All rights reserved.