The server-side mapping for interfaces provides an up-call API for the Ice run time: by implementing methods in a servant class, you provide the hook that gets the thread of control from the Ice server-side run time into your application code.
On the client side, interfaces map to proxy classes (see Section 5.12). On the server side, interfaces map to
skeleton classes. A skeleton is a class that has an abstract method for each operation on the corresponding interface. For example, consider the Slice definition for the
Node interface we defined in
Chapter 5 once more:
•
For each Slice interface <interface‑name>, the compiler generates C# interfaces
<interface‑name>Operations_ and
<interface‑name>OperationsNC_ (
NodeOperations_ and
NodeOperationsNC_ in this example). These interfaces contain a method for each operation in the Slice interface. (You can ignore the
Ice.Current parameter for the time being—we discuss it in detail in
Section 32.6.)
•
For each Slice interface <interface‑name>, the compiler generates a C# interface
<interface‑name> (
Node in this example). That interface extends
Ice.Object and the two operations interfaces.
•
For each Slice interface <interface‑name>, the compiler generates an abstract class
<interface‑name>Disp_ (
NodeDisp_ in this example). This abstract class is the actual skeleton class; it is the base class from which you derive your servant class.
In order to provide an implementation for an Ice object, you must create a servant class that inherits from the corresponding skeleton class. For example, to create a servant for the
Node interface, you could write:
By convention, servant classes have the name of their interface with an I‑suffix, so the servant class for the
Node interface is called
NodeI. (This is a convention only: as far as the Ice run time is concerned, you can chose any name you prefer for your servant classes.) Note that
NodeI extends
NodeDisp_, that is, it derives from its skeleton class.
As far as Ice is concerned, the NodeI class must implement only a single method: the abstract
name method that it inherits from its skeleton. This makes the servant class a concrete class that can be instantiated. You can add other methods and data members as you see fit to support your implementation. For example, in the preceding definition, we added a
_name member and a constructor. (Obviously, the constructor initializes the
_name member and the
name method returns its value.)
Whether an operation is an ordinary operation or an idempotent operation has no influence on the way the operation is mapped. To illustrate this, consider the following interface: