Skip to content

Commit a7c9fd6

Browse files
authored
Update license to Broadcom (#341)
* Update license to Broadcom --------- Signed-off-by: Gabriele Santomaggio <[email protected]>
1 parent 6ff17c8 commit a7c9fd6

File tree

149 files changed

+182
-158
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

149 files changed

+182
-158
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ dotnet_diagnostic.CA2007.severity = warning
229229

230230
# IDE0073: File header
231231
dotnet_diagnostic.IDE0073.severity = warning
232-
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.
232+
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.
233233

234234
# IDE0035: Remove unreachable code
235235
dotnet_diagnostic.IDE0035.severity = warning

Directory.Build.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
<PropertyGroup>
55
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)rabbit.snk</AssemblyOriginatorKeyFile>
6-
<Authors>VMware</Authors>
7-
<Company>VMware, Inc. or its affiliates.</Company>
8-
<Copyright>Copyright © 2007-$([System.DateTime]::Now.Year) VMware, Inc. or its affiliates.</Copyright>
6+
<Authors>Broadcom</Authors>
7+
<Company>Broadcom Inc. and/or its subsidiaries.</Company>
8+
<Copyright>Copyright © 2017-$([System.DateTime]::Now.Year) Broadcom. All Rights Reserved. The term Broadcom refers to Broadcom Inc. and/or its subsidiaries.</Copyright>
99
<DebugSymbols>true</DebugSymbols>
1010
<DebugType>embedded</DebugType>
1111
<DefaultLanguage>en-US</DefaultLanguage>

Examples/Performances/BatchVsBatchSend.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// This source code is dual-licensed under the Apache License, version
2+
// 2.0, and the Mozilla Public License, version 2.0.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
4+
15
using RabbitMQ.Stream.Client;
26
using RabbitMQ.Stream.Client.Reliable;
37

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

23-
24-
var config = new StreamSystemConfig() {Heartbeat = TimeSpan.Zero};
27+
var config = new StreamSystemConfig() { Heartbeat = TimeSpan.Zero };
2528
var system = await StreamSystem.Create(config);
2629
await BatchSend(system, await RecreateStream(system, "StandardBatchSend"));
2730
await StandardProducerSend(await RecreateStream(system, "StandardProducerSendNoBatch"), system);
@@ -78,7 +81,6 @@ private static async Task RProducerSend(string stream, StreamSystem system)
7881
await reliableProducer.Close();
7982
}
8083

81-
8284
private static async Task RProducerBatchSend(string stream, StreamSystem system)
8385
{
8486
Console.WriteLine("*****Reliable Producer Batch Send*****");
@@ -110,7 +112,6 @@ private static async Task RProducerBatchSend(string stream, StreamSystem system)
110112

111113
var messages = new List<Message>();
112114

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

140-
141141
private static async Task StandardProducerSend(string stream, StreamSystem system)
142142
{
143143
Console.WriteLine("*****Standard Producer Send*****");

Examples/Performances/Performances.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
<Nullable>enable</Nullable>
88
<NoWarn>$(NoWarn);CA2007</NoWarn>
99
<OutputType>Exe</OutputType>
10+
<Copyright>Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term Broadcom refers to Broadcom Inc. and/or its subsidiaries.</Copyright>
11+
<Authors>Broadcom</Authors>
12+
<Company>Broadcom Inc. and/or its subsidiaries.</Company>
1013
</PropertyGroup>
1114

1215
<ItemGroup>

Examples/Performances/Program.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1-
using Performances;
1+
// This source code is dual-licensed under the Apache License, version
2+
// 2.0, and the Mozilla Public License, version 2.0.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
4+
5+
using Performances;
26

37
BatchVsBatchSend.Start().Wait();

RabbitMQ.Stream.Client.PerfTest/RabbitMQ.Stream.Client.PerfTest.fsproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
<MinVerSkip>true</MinVerSkip>
66
<OutputType>Exe</OutputType>
77
<RootNamespace>RabbitMQ.Stream.Client.Cmd</RootNamespace>
8+
<Copyright>Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term Broadcom refers to Broadcom Inc. and/or its subsidiaries.</Copyright>
9+
<Authors>Broadcom</Authors>
10+
<Company>Broadcom Inc. and/or its subsidiaries.</Company>
811
</PropertyGroup>
912

1013
<ItemGroup>

RabbitMQ.Stream.Client/AMQP/AmqpParseException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66

RabbitMQ.Stream.Client/AMQP/AmqpWireFormattingRead.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66
using System.Buffers;

RabbitMQ.Stream.Client/AMQP/AmqpWireFormattingWrite.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66
using System.Buffers;

RabbitMQ.Stream.Client/AMQP/Annotations.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
namespace RabbitMQ.Stream.Client.AMQP
66
{

RabbitMQ.Stream.Client/AMQP/ApplicationProperties.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
namespace RabbitMQ.Stream.Client.AMQP
66
{

RabbitMQ.Stream.Client/AMQP/Data.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66
using System.Buffers;

RabbitMQ.Stream.Client/AMQP/DescribedFormatCode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66
using System.Buffers;

RabbitMQ.Stream.Client/AMQP/FormatCode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
namespace RabbitMQ.Stream.Client.AMQP
66
{

RabbitMQ.Stream.Client/AMQP/Header.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System.Buffers;
66

RabbitMQ.Stream.Client/AMQP/Map.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66
using System.Buffers;

RabbitMQ.Stream.Client/AMQP/Properties.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66
using System.Buffers;

RabbitMQ.Stream.Client/AMQP/Symbol.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
namespace RabbitMQ.Stream.Client.AMQP;
66

RabbitMQ.Stream.Client/AbstractEntity.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66
using System.Threading;

RabbitMQ.Stream.Client/AddressResolver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System.Net;
66

RabbitMQ.Stream.Client/AvailableFeatures.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66
using System.Collections.Generic;

RabbitMQ.Stream.Client/Client.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66
using System.Buffers;
@@ -40,7 +40,7 @@ public record ClientParameters
4040
{"product", "RabbitMQ Stream"},
4141
{"version", Version.VersionString},
4242
{"platform", ".NET"},
43-
{"copyright", "Copyright (c) 2020-2021 VMware, Inc. or its affiliates."},
43+
{"copyright", "Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term Broadcom refers to Broadcom Inc. and/or its subsidiaries."},
4444
{
4545
"information",
4646
"Licensed under the Apache 2.0 and MPL 2.0 licenses. See https://www.rabbitmq.com/"

RabbitMQ.Stream.Client/ClientExceptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66
using System.Linq;

RabbitMQ.Stream.Client/CloseRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66

RabbitMQ.Stream.Client/CloseResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66
using System.Buffers;

RabbitMQ.Stream.Client/CommandVersionsRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66

RabbitMQ.Stream.Client/CommandVersionsResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66
using System.Buffers;

RabbitMQ.Stream.Client/Compression.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66
using System.Buffers;

RabbitMQ.Stream.Client/Connection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66
using System.Buffers;

RabbitMQ.Stream.Client/ConnectionsPool.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66
using System.Collections.Concurrent;

RabbitMQ.Stream.Client/Consts.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66

RabbitMQ.Stream.Client/ConsumerUpdateQueryResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66
using System.Buffers;

RabbitMQ.Stream.Client/ConsumerUpdateRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66

RabbitMQ.Stream.Client/Create.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66
using System.Buffers;

RabbitMQ.Stream.Client/Credit.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66

RabbitMQ.Stream.Client/CreditResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66
using System.Buffers;

RabbitMQ.Stream.Client/DeclarePublisherRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66

RabbitMQ.Stream.Client/DeclarePublisherResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66
using System.Buffers;

RabbitMQ.Stream.Client/Delete.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66
using System.Buffers;

RabbitMQ.Stream.Client/DeletePublisherRequest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66

RabbitMQ.Stream.Client/DeletePublisherResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66
using System.Buffers;

RabbitMQ.Stream.Client/Deliver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
using System;
66
using System.Buffers;

RabbitMQ.Stream.Client/EntityInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This source code is dual-licensed under the Apache License, version
22
// 2.0, and the Mozilla Public License, version 2.0.
3-
// Copyright (c) 2007-2023 VMware, Inc.
3+
// Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
44

55
namespace RabbitMQ.Stream.Client;
66

0 commit comments

Comments
 (0)