Changes between Version 1 and Version 2 of Documentation/Tutorial/PingPong


Ignore:
Timestamp:
Jan 20, 2009, 4:23:16 PM (15 years ago)
Author:
huebsch
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/Tutorial/PingPong

    v1 v2  
    22'''The Ping-Pong Example'''
    33
    4 To help getting into using Ariba, we provide a short example of how to use the architecture. For this, assume a simple service whose simply and only intention is to exchange data packets between two participating nodes, just like playing ping pong.
     4To help getting into using Ariba, we provide a short example of how to use the architecture. For this, assume a simple service whose simply and only intention is to exchange data packets between two participating nodes, just like playing ping pong. You will find the whole code within the package under ''sample/pingpong''.
     5
     6The source files divide into the main code (''PingPong.h/.cpp'') and the used message format (declared in ''PingPongMessage.h/.cpp''). In Addition, ''main.cpp'' acts as the entry point to the ping-pong example. We will first give a high-level introduction about what the example does and later dig deeper into the code.
     7