Skip to content

Commit 2f4d112

Browse files
committed
Add missing class
(cherry picked from commit 35739f2)
1 parent 700fe97 commit 2f4d112

File tree

1 file changed

+32
-0
lines changed
  • src/main/java/com/rabbitmq/client/impl/recovery

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// Copyright (c) 2020 VMware, Inc. or its affiliates. All rights reserved.
2+
//
3+
// This software, the RabbitMQ Java client library, is triple-licensed under the
4+
// Mozilla Public License 2.0 ("MPL"), the GNU General Public License version 2
5+
// ("GPL") and the Apache License version 2 ("ASL"). For the MPL, please see
6+
// LICENSE-MPL-RabbitMQ. For the GPL, please see LICENSE-GPL2. For the ASL,
7+
// please see LICENSE-APACHE2.
8+
//
9+
// This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND,
10+
// either express or implied. See the LICENSE file for specific language governing
11+
// rights and limitations of this software.
12+
//
13+
// If you have any questions regarding licensing, please contact us at
14+
// info@rabbitmq.com.
15+
16+
package com.rabbitmq.client.impl.recovery;
17+
18+
import java.io.IOException;
19+
import java.util.concurrent.TimeoutException;
20+
21+
final class Utils {
22+
23+
private Utils() {}
24+
25+
@FunctionalInterface
26+
interface IoTimeoutExceptionRunnable {
27+
28+
void run() throws IOException, TimeoutException;
29+
30+
}
31+
32+
}

0 commit comments

Comments
 (0)