Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ dotnet_diagnostic.CA2007.severity = warning

# IDE0073: File header
dotnet_diagnostic.IDE0073.severity = warning
file_header_template = This source code is dual-licensed under the Apache License, version\n2.0, and the Mozilla Public License, version 2.0.\nCopyright (c) 2007-2023 VMware, Inc.
file_header_template = This source code is dual-licensed under the Apache License, version\n2.0, and the Mozilla Public License, version 2.0.\nCopyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

# IDE0035: Remove unreachable code
dotnet_diagnostic.IDE0035.severity = warning
Expand Down
6 changes: 3 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

<PropertyGroup>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)rabbit.snk</AssemblyOriginatorKeyFile>
<Authors>VMware</Authors>
<Company>VMware, Inc. or its affiliates.</Company>
<Copyright>Copyright © 2007-$([System.DateTime]::Now.Year) VMware, Inc. or its affiliates.</Copyright>
<Authors>Broadcom</Authors>
<Company>Broadcom Inc. and/or its subsidiaries.</Company>
<Copyright>Copyright © 2017-$([System.DateTime]::Now.Year) Broadcom. All Rights Reserved. The term Broadcom refers to Broadcom Inc. and/or its subsidiaries.</Copyright>
<DebugSymbols>true</DebugSymbols>
<DebugType>embedded</DebugType>
<DefaultLanguage>en-US</DefaultLanguage>
Expand Down
10 changes: 5 additions & 5 deletions Examples/Performances/BatchVsBatchSend.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using RabbitMQ.Stream.Client;
using RabbitMQ.Stream.Client.Reliable;

Expand All @@ -20,8 +24,7 @@ public static async Task Start()
Console.WriteLine("Aggregate Batch Size: {0}", AggregateBatchSize);
Console.WriteLine("Print Messages each: {0} messages", ModPrintMessages);


var config = new StreamSystemConfig() {Heartbeat = TimeSpan.Zero};
var config = new StreamSystemConfig() { Heartbeat = TimeSpan.Zero };
var system = await StreamSystem.Create(config);
await BatchSend(system, await RecreateStream(system, "StandardBatchSend"));
await StandardProducerSend(await RecreateStream(system, "StandardProducerSendNoBatch"), system);
Expand Down Expand Up @@ -78,7 +81,6 @@ private static async Task RProducerSend(string stream, StreamSystem system)
await reliableProducer.Close();
}


private static async Task RProducerBatchSend(string stream, StreamSystem system)
{
Console.WriteLine("*****Reliable Producer Batch Send*****");
Expand Down Expand Up @@ -110,7 +112,6 @@ private static async Task RProducerBatchSend(string stream, StreamSystem system)

var messages = new List<Message>();


var start = DateTime.Now;
for (ulong i = 1; i <= TotalMessages; i++)
{
Expand All @@ -137,7 +138,6 @@ private static async Task RProducerBatchSend(string stream, StreamSystem system)
await producer.Close();
}


private static async Task StandardProducerSend(string stream, StreamSystem system)
{
Console.WriteLine("*****Standard Producer Send*****");
Expand Down
3 changes: 3 additions & 0 deletions Examples/Performances/Performances.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
<Nullable>enable</Nullable>
<NoWarn>$(NoWarn);CA2007</NoWarn>
<OutputType>Exe</OutputType>
<Copyright>Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term Broadcom refers to Broadcom Inc. and/or its subsidiaries.</Copyright>
<Authors>Broadcom</Authors>
<Company>Broadcom Inc. and/or its subsidiaries.</Company>
</PropertyGroup>

<ItemGroup>
Expand Down
6 changes: 5 additions & 1 deletion Examples/Performances/Program.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
using Performances;
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using Performances;

BatchVsBatchSend.Start().Wait();
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
<MinVerSkip>true</MinVerSkip>
<OutputType>Exe</OutputType>
<RootNamespace>RabbitMQ.Stream.Client.Cmd</RootNamespace>
<Copyright>Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term Broadcom refers to Broadcom Inc. and/or its subsidiaries.</Copyright>
<Authors>Broadcom</Authors>
<Company>Broadcom Inc. and/or its subsidiaries.</Company>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/AMQP/AmqpParseException.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;

Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/AMQP/AmqpWireFormattingRead.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;
using System.Buffers;
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/AMQP/AmqpWireFormattingWrite.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;
using System.Buffers;
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/AMQP/Annotations.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

namespace RabbitMQ.Stream.Client.AMQP
{
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/AMQP/ApplicationProperties.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

namespace RabbitMQ.Stream.Client.AMQP
{
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/AMQP/Data.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;
using System.Buffers;
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/AMQP/DescribedFormatCode.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;
using System.Buffers;
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/AMQP/FormatCode.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

namespace RabbitMQ.Stream.Client.AMQP
{
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/AMQP/Header.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System.Buffers;

Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/AMQP/Map.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;
using System.Buffers;
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/AMQP/Properties.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;
using System.Buffers;
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/AMQP/Symbol.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

namespace RabbitMQ.Stream.Client.AMQP;

Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/AbstractEntity.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;
using System.Threading;
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/AddressResolver.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System.Net;

Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/AvailableFeatures.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;
using System.Collections.Generic;
Expand Down
4 changes: 2 additions & 2 deletions RabbitMQ.Stream.Client/Client.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;
using System.Buffers;
Expand Down Expand Up @@ -40,7 +40,7 @@ public record ClientParameters
{"product", "RabbitMQ Stream"},
{"version", Version.VersionString},
{"platform", ".NET"},
{"copyright", "Copyright (c) 2020-2021 VMware, Inc. or its affiliates."},
{"copyright", "Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term Broadcom refers to Broadcom Inc. and/or its subsidiaries."},
{
"information",
"Licensed under the Apache 2.0 and MPL 2.0 licenses. See https://www.rabbitmq.com/"
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/ClientExceptions.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;
using System.Linq;
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/CloseRequest.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;

Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/CloseResponse.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;
using System.Buffers;
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/CommandVersionsRequest.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;

Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/CommandVersionsResponse.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;
using System.Buffers;
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/Compression.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;
using System.Buffers;
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/Connection.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;
using System.Buffers;
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/ConnectionsPool.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;
using System.Collections.Concurrent;
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/Consts.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;

Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/ConsumerUpdateQueryResponse.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;
using System.Buffers;
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/ConsumerUpdateRequest.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;

Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/Create.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;
using System.Buffers;
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/Credit.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;

Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/CreditResponse.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;
using System.Buffers;
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/DeclarePublisherRequest.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;

Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/DeclarePublisherResponse.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;
using System.Buffers;
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/Delete.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;
using System.Buffers;
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/DeletePublisherRequest.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;

Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/DeletePublisherResponse.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;
using System.Buffers;
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/Deliver.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

using System;
using System.Buffers;
Expand Down
2 changes: 1 addition & 1 deletion RabbitMQ.Stream.Client/EntityInfo.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This source code is dual-licensed under the Apache License, version
// 2.0, and the Mozilla Public License, version 2.0.
// Copyright (c) 2007-2023 VMware, Inc.
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.

namespace RabbitMQ.Stream.Client;

Expand Down
Loading