Class stub

In the distributed computing environment, stub stands for client side object participating in the distributed object communication.

The stub acts as a gateway for client side objects and all outgoing requests to server side objects that are routed through it. The stub wraps client object functionality and by adding the network logic ensures the reliable communication channel between client and server. The stub can be written up manually or generated automatically depending on chosen communication protocol.

stub is responsible for:

Protocols using the stub/skeleton approach

References

  1. ^ MSDN: Marshalling details.