aboutsummaryrefslogtreecommitdiffstats
path: root/messagebus/src/main/java/com/yahoo/messagebus/AllPassThrottlePolicy.java
blob: ab34ee6913fdbf6c69e768944434d3d7776840c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.messagebus;

/**
 * This is an implementation of the {@link ThrottlePolicy} that passes all requests (no real throttling).
 *
 * @author dybis
 */
public class AllPassThrottlePolicy implements ThrottlePolicy {

    @Override
    public boolean canSend(Message msg, int pendingCount) {
        return true;
    }

    @Override
    public void processMessage(Message msg) {
    }

    @Override
    public void processReply(Reply reply) {
    }

}