]> rtime.felk.cvut.cz Git - orte.git/blob - orte/java/src/org/ocera/orte/SubscriptionCallback.java
improved JAVA interface from Lukas, update makefiles from msvc from Jan
[orte.git] / orte / java / src / org / ocera / orte / SubscriptionCallback.java
1 /* SubscriptionCallback.java */
2
3 /**
4  * Class SubscriptionCallback. 
5  *
6  * @author Lukas Pokorny (lukas_pokorny@centrum.cz)
7  * @author CTU FEE Prague - Department of Control Engineering (dce.felk.cvut.cz)
8  * @author Project ORTE - OCERA Real Time Ethernet (www.ocera.org)
9  * @author dedication to Kj
10  * @version 0.1
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU General Public License for more details.
21  *
22  */
23
24 package org.ocera.orte;
25 import  org.ocera.orte.types.*;
26
27
28 public class SubscriptionCallback 
29 {
30
31   public void callback(RecvInfo info, MessageData message)
32   {
33     System.out.println(":j: ****** SubscriptionCallback.callback ******");
34   }
35
36 }