KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > corba > se > spi > transport > CorbaResponseWaitingRoom


1 /*
2  * @(#)CorbaResponseWaitingRoom.java 1.8 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package com.sun.corba.se.spi.transport;
9
10 import com.sun.corba.se.pept.protocol.MessageMediator;
11 import com.sun.corba.se.pept.transport.ResponseWaitingRoom;
12 import org.omg.CORBA.SystemException JavaDoc;
13
14 /**
15  * @author Harold Carr
16  */

17 public interface CorbaResponseWaitingRoom
18     extends
19     ResponseWaitingRoom
20 {
21     public void signalExceptionToAllWaiters(SystemException JavaDoc systemException);
22
23     public MessageMediator getMessageMediator(int requestId);
24 }
25
26 // End of file.
27
Popular Tags