2009-06-12 Bill Holmes <billholmes54@gmail.com>
[mono.git] / mcs / class / System.ServiceModel / System.ServiceModel.Channels / PeerInputChannel.cs
1 //
2 // PeerInputChannel.cs
3 //
4 // Author: Atsushi Enomoto (atsushi@ximian.com)
5 //
6 // Copyright (C) 2009 Novell, Inc (http://www.novell.com)
7 //
8 // Permission is hereby granted, free of charge, to any person obtaining
9 // a copy of this software and associated documentation files (the
10 // "Software"), to deal in the Software without restriction, including
11 // without limitation the rights to use, copy, modify, merge, publish,
12 // distribute, sublicense, and/or sell copies of the Software, and to
13 // permit persons to whom the Software is furnished to do so, subject to
14 // the following conditions:
15 // 
16 // The above copyright notice and this permission notice shall be
17 // included in all copies or substantial portions of the Software.
18 // 
19 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
23 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
24 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
25 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 //
27 using System;
28 using System.Messaging;
29 using System.ServiceModel;
30
31 namespace System.ServiceModel.Channels
32 {
33         internal class PeerInputChannel : InputChannelBase
34         {
35                 PeerChannelListener<IInputChannel> listener;
36                 EndpointAddress local_address;
37
38                 // FIXME: handle timeout
39                 public PeerInputChannel (PeerChannelListener<IInputChannel> listener, TimeSpan timeout)
40                         : base (listener)
41                 {
42                         this.listener = listener;
43                 }
44
45                 // FIXME: how is it set?
46                 public override EndpointAddress LocalAddress {
47                         get { return local_address; }
48                 }
49
50                 public override IAsyncResult BeginReceive (TimeSpan timeout, AsyncCallback callback, object state)
51                 {
52                         throw new NotImplementedException ();
53                 }
54
55                 public override IAsyncResult BeginTryReceive (TimeSpan timeout, AsyncCallback callback, object state)
56                 {
57                         throw new NotImplementedException ();
58                 }
59
60                 public override IAsyncResult BeginWaitForMessage (TimeSpan timeout, AsyncCallback callback, object state)
61                 {
62                         throw new NotImplementedException ();
63                 }
64
65                 public override Message EndReceive (IAsyncResult result)
66                 {
67                         throw new NotImplementedException ();
68                 }
69
70                 public override bool EndTryReceive (IAsyncResult result, out Message message)
71                 {
72                         throw new NotImplementedException ();
73                 }
74
75                 public override bool EndWaitForMessage (IAsyncResult result)
76                 {
77                         throw new NotImplementedException ();
78                 }
79
80                 public override Message Receive (TimeSpan timeout)
81                 {
82                         throw new NotImplementedException ();
83                 }
84
85                 public override bool TryReceive (TimeSpan timeout, out Message message)
86                 {
87                         throw new NotImplementedException ();
88                 }
89
90                 public override bool WaitForMessage (TimeSpan timeout)
91                 {
92                         throw new NotImplementedException ();
93                 }
94
95                 // ChannelBase
96
97                 protected override void OnAbort ()
98                 {
99                         throw new NotImplementedException ();
100                 }
101
102                 protected override void OnClose (TimeSpan timeout)
103                 {
104                         throw new NotImplementedException ();
105                 }
106
107                 protected override void OnOpen (TimeSpan timeout)
108                 {
109                         // nothing to do
110                 }
111
112                 protected override IAsyncResult OnBeginOpen (TimeSpan timeout, AsyncCallback callback, object sender)
113                 {
114                         throw new NotImplementedException ();
115                 }
116
117                 protected override void OnEndOpen (IAsyncResult result)
118                 {
119                         throw new NotImplementedException ();
120                 }
121
122                 protected override IAsyncResult OnBeginClose (TimeSpan timeout, AsyncCallback callback, object sender)
123                 {
124                         throw new NotImplementedException ();
125                 }
126
127                 protected override void OnEndClose (IAsyncResult result)
128                 {
129                         throw new NotImplementedException ();
130                 }
131         }
132 }