File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed
src/main/java/com/rabbitmq/client/impl/recovery Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments