blob: 326a9e82332cd872acdea62aef5f10c92d4af0c4 [file] [log] [blame]
Jan Tattermuscha5272b62015-04-30 11:56:46 -07001#region Copyright notice and license
Jan Tattermuscha7fff862015-02-13 11:08:08 -08002
Jan Tattermusch7897ae92017-06-07 22:57:36 +02003// Copyright 2015 gRPC authors.
Craig Tiller190d3602015-02-18 09:23:38 -08004//
Jan Tattermusch7897ae92017-06-07 22:57:36 +02005// Licensed under the Apache License, Version 2.0 (the "License");
6// you may not use this file except in compliance with the License.
7// You may obtain a copy of the License at
Craig Tiller190d3602015-02-18 09:23:38 -08008//
Jan Tattermusch7897ae92017-06-07 22:57:36 +02009// http://www.apache.org/licenses/LICENSE-2.0
Craig Tiller190d3602015-02-18 09:23:38 -080010//
Jan Tattermusch7897ae92017-06-07 22:57:36 +020011// Unless required by applicable law or agreed to in writing, software
12// distributed under the License is distributed on an "AS IS" BASIS,
13// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14// See the License for the specific language governing permissions and
15// limitations under the License.
Jan Tattermuscha7fff862015-02-13 11:08:08 -080016
17#endregion
18
Jan Tattermuscha7608b02015-02-03 17:54:38 -080019using System;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080020using System.Collections.Generic;
Jan Tattermuscha5272b62015-04-30 11:56:46 -070021using System.Linq;
22using System.Text;
Jan Tattermusch30868622015-02-19 09:22:33 -080023using System.Threading.Tasks;
Jan Tattermuscha7608b02015-02-03 17:54:38 -080024
Jan Tattermuscha5272b62015-04-30 11:56:46 -070025namespace Grpc.Core
Jan Tattermuscha7608b02015-02-03 17:54:38 -080026{
Jan Tattermuscha5272b62015-04-30 11:56:46 -070027 /// <summary>
28 /// Client-side writable stream of messages with Close capability.
29 /// </summary>
Jan Tattermusch12855fc2015-08-24 16:43:23 -070030 /// <typeparam name="T">The message type.</typeparam>
Jan Tattermuscha5272b62015-04-30 11:56:46 -070031 public interface IClientStreamWriter<T> : IAsyncStreamWriter<T>
Jan Tattermuscha7608b02015-02-03 17:54:38 -080032 {
Jan Tattermuscha5272b62015-04-30 11:56:46 -070033 /// <summary>
Jan Tattermusch7ca61792015-05-18 14:28:22 -070034 /// Completes/closes the stream. Can only be called once there is no pending write. No writes should follow calling this.
Jan Tattermuscha5272b62015-04-30 11:56:46 -070035 /// </summary>
Jan Tattermusch43dc50b2015-05-18 15:27:19 -070036 Task CompleteAsync();
Jan Tattermuscha7608b02015-02-03 17:54:38 -080037 }
38}