/* * Copyright (c) 2015 iTAC Software AG, Germany. All Rights Reserved. * * This software is protected by copyright. Under no circumstances may any part of this file in any form be copied, * printed, edited or otherwise distributed, be stored in a retrieval system, or be translated into another language * without the written permission of iTAC Software AG. */ using System; namespace com.itac.mes.commonsmt { /// /// Interface IMesServicesChannel /// public interface IMesServicesChannel : IMesServices { /// /// returns true when this channel is currently shutting down. While shutting down this channel could not be used for communication. /// /// Boolean isShutdown(); /// /// starting up this channel. While starting up this channel could not be used for communication. /// void startup(); /// /// initiate the shutdown of the channel. /// void shutdown(); /// /// setting a name for this channel. Name could be used by java client as well. /// /// void setChannelName(String channelName); /// /// returning the name of this channel. /// /// String getChannelName(); } }