Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The implementation is available for Python, Java and C++ languages and can interact transparently between all of them.

Presentation

  • Scope
    • TAO's Notification Service
    • ACS Notification Channel Architecture
  • Duration: 15 minutes

Hands-On Exercise

Event Definition IDL

Code Block
languagecpp
titleExampleEvent.idl
linenumberstrue
collapsetrue
#ifndef _ExampleEvent_IDL_
#define _ExampleEvent_IDL_

#pragma prefix "alma"

module workshop {
    const string CHANNELNAME_EXAMPLE = "example";
    struct ExampleEvent {
        string msg;
        long value;
    };
};
#endif

...