Heute haben wir uns mit Common Object Request Broker Architecture (CORBA) beschäftigt.
| Skript-Anfang | VS_3_So2014_2 – Seite 51 |
|---|---|
| Skript-Ende | VS_3_So2014_2 – Seite 74 |
Performance bei CORBA
- Man muss je nach Fall ein anderes Verfahren wählen
- Je weniger Kommunikation desto besser
Gleichzeitige Ein- und Ausgabe
module Bank {
interface Account {
void deposit (in float amount, out float newBalance );
void withdraw (in float amount, out float newBalance );
};
};
Separate Ein- und Ausgabe
module Bank {
interface Account {
void deposit (in float amount);
void withdraw (in float amount);
void balance(out float newBalance);
};
};