Ice._RemoteLoggerOperations Maven / Gradle / Ivy
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.4
//
//
//
// Generated from file `RemoteLogger.ice'
//
// Warning: do not edit this file.
//
//
//
package Ice;
/**
* The Ice remote logger interface. An application can implement a
* RemoteLogger to receive the log messages sent to the local {@link Logger}
* of another Ice application.
*
**/
public interface _RemoteLoggerOperations
{
/**
* init is called by attachRemoteLogger when a RemoteLogger proxy is attached.
*
* @param prefix The prefix of the associated local Logger.
*
* @param logMessages Old log messages generated before "now".
*
* @param current The Current object for the invocation.
**/
void init(String prefix, LogMessage[] logMessages, Current current);
/**
* Log a LogMessage. Note that log may be called by LoggerAdmin before init.
*
* @param message The message to log.
*
* @param current The Current object for the invocation.
**/
void log(LogMessage message, Current current);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy