summaryrefslogtreecommitdiffstats
path: root/messagebus/src/main/java/com/yahoo/messagebus/AllPassThrottlePolicy.java
blob: 8cf53e47717d9dcf831bd57af9dac51bca158d69 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2017 Yahoo Holdings. 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) {
    }
}