Changes between Version 4 and Version 5 of GROUP_WRAPPERS_R0


Ignore:
Timestamp:
08/24/09 18:54:02 (16 years ago)
Author:
izomorphius
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GROUP_WRAPPERS_R0

    v4 v5  
    3131<size> <id> ... [[BR]] 
    3232<size> and <id> are mandatory and their meanings are : 
    33  * size - the length of the integer sequence 
     33 * size - the length of the integer sequence. The size includes the size number itself. 
    3434 * id - command/sequence id 
    3535 
     
    3838The communication will be in the following way: 
    3939 * the Java program sends a command through the standard input of the C++ process 
    40  * the C++ program creates a respones on the base of the command 
    41  * the C++ program returns the reposne through its standard output 
    42  * the Java program receives the respone and acts on the base of it 
     40 * the C++ program creates a response on the base of the command 
     41 * the C++ program returns the response through its standard output 
     42 * the Java program receives the response and acts on the base of it 
    4343 
    44 This means that the Java program will be blocked until it recieves mething from the standard input of the process so the Java wrapper will be in separate thread. Also the control of the C++ application will be in the Java part - it will run and stop it. 
     44This means that the Java program will be blocked until it receive something from the standard input of the process so the Java wrapper will be in separate thread. Also the control of the C++ application will be in the Java part - it will run and stop it. 
    4545 
    46 The flow of communication written above is common for all other wrapers and native applications. This code will reside in classes called Bridges. [[BR]] 
     46The flow of communication written above is common for all other wrappers and native applications. This code will reside in classes called Bridges. [[BR]] 
    4747There will be some common commands and responses: 
    4848 * StartCommand