Lluis Sanchez b936987419 no message 23 years ago
..
README a810886642 2002-08-30 Dietmar Maurer <[email protected]> 23 years ago
SimpleChannel.cs 1a0547470d 2002-09-03 Dietmar Maurer <[email protected]> 23 years ago
SimpleClientChannel.cs 1a0547470d 2002-09-03 Dietmar Maurer <[email protected]> 23 years ago
SimpleClientFormatterSink.cs b936987419 no message 23 years ago
SimpleClientFormatterSinkProvider.cs 2e4f40e23d channel example implementation 23 years ago
SimpleClientTransportSink.cs f82ceee6bb 2002-09-03 Dietmar Maurer <[email protected]> 23 years ago
SimpleClientTransportSinkProvider.cs 2e4f40e23d channel example implementation 23 years ago
SimpleMessageFormat.cs 2e4f40e23d channel example implementation 23 years ago
SimpleServerChannel.cs f82ceee6bb 2002-09-03 Dietmar Maurer <[email protected]> 23 years ago
SimpleServerFormatterSink.cs b936987419 no message 23 years ago
SimpleServerFormatterSinkProvider.cs 2e4f40e23d channel example implementation 23 years ago
SimpleServerTransportSink.cs a810886642 2002-08-30 Dietmar Maurer <[email protected]> 23 years ago
SimpleWireFormat.cs b936987419 no message 23 years ago

README

Example Channel Implementation:
===============================

This Channel is just used as example to show people how to implement remoting
Channels for mono. I tried to keep it as simple as possible, so it is not
feature complete.

Data Types:
===========

The channel wire format supports all basic data type. The formatter does not
handle exceptions itself, instead it passes them to the transport sink.

Overview
========

SimpleMessageFormat.cs: Contains routines to read/write messages transfered on
the network (low level message format)

SimpleWireFormat.cs: This is the data formatter.

SimpleClientChannel.cs: The client side of the channel.

SimpleClientFormatterSink.cs: client side formatter sink
SimpleClientFormatterSinkProvider.cs: and the formatter sink provider

SimpleClientTransportSink.cs: client side transport sink
SimpleClientTransportSinkProvider.cs: and the transport sink provider

SimpleServerChannel.cs: The server side of the channel.

SimpleServerFormatterSink.cs: server side formatter sink
SimpleServerFormatterSinkProvider.cs: and the formatter sink provider

SimpleServerTransportSink.cs: server side transport sink.

SimpleChannel.cs: combines SimpleClientChannel with SimpleServerChannel.