aboutsummaryrefslogtreecommitdiffstats
path: root/messagebus/src/main/java/com/yahoo/messagebus/Connectable.java
blob: db8d926db43097e6cbedc8a517b0b2451abca39b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.messagebus;

/**
 * Something which can be connected to a network when ready to receive incoming requests.
 *
 * @author jonmv
 */
public interface Connectable {

    void connect();

}