Documentation for Ice 3.4. The latest release is Ice 3.7. Refer to the space directory for other releases.

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »


Ice::Process

Overview

interface Process

An administrative interface for process management. Managed servers must implement this interface.

A servant implementing this interface is a potential target for denial-of-service attacks, therefore proper security precautions should be taken. For example, the servant can use a UUID to make its identity harder to guess, and be registered in an object adapter with a secured endpoint.

Operation Index

shutdown — Initiate a graceful shut-down.
writeMessage — Write a message on the process' stdout or stderr.

Operations

void shutdown()

Initiate a graceful shut-down.

See Also

void writeMessage(string message, int fd)

Write a message on the process' stdout or stderr.

Parameters

message — The message.
fd — 1 for stdout, 2 for stderr.


  • No labels