<< June 19, 2008 | Home | June 21, 2008 >>

OpenDDS 1.1 Released

Jonathan has announced a new release of OpenDDS, an open source C++ implementation of the Object Management Group (OMG) Data Distribution Service (DDS) by OCI.

OpenDDS.org:

Version 1.1 Released

We are pleased to announce the release of OpenDDS version 1.1!

  • More QoS features have been implemented
  • dispose() notifications have been added
  • Added IPv6 support
  • Improved memory management
  • Multicast transport improvements
  • Implemented Changeable QoS policies
  • Use multiple DCPSInfoRepos
  • Documentation updates
  • New tests and examples

See the Release Notes for details.

Friday Java Quiz: Know Your Interfaces

We go back to basics this week.

Q: Given the following interface definition:

interface Foo {
  int ZERO = 0;
  public int ONE = 1;
  public static int TWO = 2;
  public static final int THREE = 3;

  void first();
  abstract void second();
  public abstract void third();
}

Which of the following are true (choose all that apply):

  1. ZERO is not public
  2. ONE is not static
  3. TWO is not final
  4. first() is not abstract
  5. second() is not public
  6. None of the above
  7. One of the above
  8. Two of the above
  9. Three of the above
  10. All of the above

And we revert back to strict rules: no books, no googling, no internet, no compiling. Just stare at the code and think.

Tags :