Interface ORBImple

All Known Implementing Classes:
javaidl_1_4, ORBBase

public interface ORBImple
The Object Request Broker interface.
Since:
JTS 2.1.
Version:
$Id: ORBImple.java 2342 2006-03-30 13:06:17Z $
Author:
Mark Little (mark@arjuna.com)
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Destroy the ORB.
    void
    Initialise the ORB.
    void
     
    void
     
    boolean
    Is the ORB initialised?
    org.omg.CORBA.ORB
    orb()
    Return a reference to the ORB.
    void
    orb(org.omg.CORBA.ORB o)
    Provide a reference to the ORB.
    void
    Shutdown the ORB.
    void
    shutdown(boolean waitForCompletion)
    Shutdown the ORB and signal whether to do this synchronously.
  • Method Details

    • initialised

      boolean initialised()
      Is the ORB initialised?
    • init

      void init() throws org.omg.CORBA.SystemException
      Initialise the ORB.
      Throws:
      org.omg.CORBA.SystemException
    • init

      void init(Applet a, Properties p) throws org.omg.CORBA.SystemException
      Throws:
      org.omg.CORBA.SystemException
    • init

      void init(String[] s, Properties p) throws org.omg.CORBA.SystemException
      Throws:
      org.omg.CORBA.SystemException
    • shutdown

      void shutdown() throws org.omg.CORBA.SystemException
      Shutdown the ORB. Do not wait for explicit completion ack from the ORB.
      Throws:
      org.omg.CORBA.SystemException
    • shutdown

      void shutdown(boolean waitForCompletion) throws org.omg.CORBA.SystemException
      Shutdown the ORB and signal whether to do this synchronously.
      Throws:
      org.omg.CORBA.SystemException
    • destroy

      void destroy() throws org.omg.CORBA.SystemException
      Destroy the ORB.
      Throws:
      org.omg.CORBA.SystemException
    • orb

      org.omg.CORBA.ORB orb() throws org.omg.CORBA.SystemException
      Return a reference to the ORB.
      Throws:
      org.omg.CORBA.SystemException
    • orb

      void orb(org.omg.CORBA.ORB o) throws org.omg.CORBA.SystemException
      Provide a reference to the ORB. Used if the application must initialise the ORB separately.
      Throws:
      org.omg.CORBA.SystemException