package.html 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
  2. <!-- package.html --
  3. Copyright (C) 2002 Free Software Foundation, Inc.
  4. This file is part of GNU Classpath.
  5. GNU Classpath is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2, or (at your option)
  8. any later version.
  9. GNU Classpath is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with GNU Classpath; see the file COPYING. If not, write to the
  15. Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  16. 02110-1301 USA.
  17. Linking this library statically or dynamically with other modules is
  18. making a combined work based on this library. Thus, the terms and
  19. conditions of the GNU General Public License cover the whole
  20. combination.
  21. As a special exception, the copyright holders of this library give you
  22. permission to link this library with independent modules to produce an
  23. executable, regardless of the license terms of these independent
  24. modules, and to copy and distribute the resulting executable under
  25. terms of your choice, provided that you also meet, for each linked
  26. independent module, the terms and conditions of the license of that
  27. module. An independent module is a module which is not derived from
  28. or based on this library. If you modify this library, you may extend
  29. this exception to your version of the library, but you are not
  30. obligated to do so. If you do not wish to do so, delete this
  31. exception statement from your version. -->
  32. <html>
  33. <head><title>GNU Classpath - org.omg.CORBA.Messaging</title></head>
  34. <body>
  35. Contains CORBA synchronization modes, specifying how far the request shall
  36. progress before control is returned to the client for one way operations.
  37. The one way operation is an operation when no response is required.
  38. OMG specification defines the following modes:
  39. <ul>
  40. <li>
  41. SYNC_NONE (0) - The ORB returns control before sending the request message.
  42. </li><li>
  43. SYNC_WITH_TRANSPORT (1) - The ORB returns control to the client only after the
  44. transport has accepted the request message. There is stil no guarantee that the
  45. request will be delivered.
  46. </li><li>
  47. SYNC_WITH_SERVER (2) - The ORB waits for the reply message from the server side ORB.
  48. </li><li>
  49. SYNC_WITH_TARGET (3) is equivalent for the synchronous, no one way operations.
  50. It is the most realiable, also the slowest one.
  51. </ul>
  52. The java API specification up till 1.4 inclusive defines only one
  53. constant, SYNC_WITH_TRANSPORT. Others may appear in the future versions.
  54. @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)</body>
  55. </html>