doc. added

This commit is contained in:
Christian Köllner 2020-04-22 22:35:06 +02:00
parent 4f0abaac73
commit f896acf06b
4 changed files with 10 additions and 4 deletions

View File

@ -7,8 +7,8 @@
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.12.0" />
<PackageReference Include="Capnp.Net.Runtime" Version="1.3.95-g4f76073ee5" />
<PackageReference Include="CapnpC.CSharp.MsBuild.Generation" Version="1.3.95-g4f76073ee5" />
<PackageReference Include="Capnp.Net.Runtime" Version="1.3.97-g4f0abaac73" />
<PackageReference Include="CapnpC.CSharp.MsBuild.Generation" Version="1.3.97-g4f0abaac73" />
<PackageReference Include="Google.Protobuf" Version="3.11.3" />
<PackageReference Include="Grpc.Net.Client" Version="2.27.0" />
<PackageReference Include="Grpc.Tools" Version="2.27.0">

View File

@ -6,8 +6,8 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Capnp.Net.Runtime" Version="1.3.95-g4f76073ee5" />
<PackageReference Include="CapnpC.CSharp.MsBuild.Generation" Version="1.3.95-g4f76073ee5" />
<PackageReference Include="Capnp.Net.Runtime" Version="1.3.97-g4f0abaac73" />
<PackageReference Include="CapnpC.CSharp.MsBuild.Generation" Version="1.3.97-g4f0abaac73" />
</ItemGroup>
</Project>

View File

@ -121,6 +121,9 @@ namespace Capnp
}
}
/// <summary>
/// Flushes all buffered frames.
/// </summary>
public void Flush()
{
if (Monitor.TryEnter(_writeLock))

View File

@ -10,6 +10,9 @@
/// </summary>
void Forward(WireFrame frame);
/// <summary>
/// Indicates that the endpoint should flush any buffered frames.
/// </summary>
void Flush();
/// <summary>