Ice._RemoteLoggerOperationsNC Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice-compat Show documentation
Show all versions of ice-compat Show documentation
Ice is a comprehensive RPC framework that helps you build distributed applications with minimal effort using familiar object-oriented idioms
//
// 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 _RemoteLoggerOperationsNC
{
/**
* 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".
*
**/
void init(String prefix, LogMessage[] logMessages);
/**
* Log a LogMessage. Note that log may be called by LoggerAdmin before init.
*
* @param message The message to log.
*
**/
void log(LogMessage message);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy