1/*2 * Licensed to the Apache Software Foundation (ASF) under one3 * or more contributor license agreements. See the NOTICE file4 * distributed with this work for additional information5 * regarding copyright ownership. The ASF licenses this file6 * to you under the Apache License, Version 2.0 (the7 * "License"); you may not use this file except in compliance8 * with the License. You may obtain a copy of the License at9 *10 * http://www.apache.org/licenses/LICENSE-2.011 *12 * Unless required by applicable law or agreed to in writing, software13 * distributed under the License is distributed on an "AS IS" BASIS,14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.15 * See the License for the specific language governing permissions and16 * limitations under the License.17 */1819package org.apache.giraph.comm.flow_control;
2021import org.apache.giraph.comm.netty.NettyClient;
22import org.apache.giraph.comm.netty.handler.AckSignalFlag;
23import org.apache.giraph.comm.requests.WritableRequest;
2425/**26 * Representation of a flow control policy that does not do anything other than27 * the vanilla network client request transfer mechanism28 */29publicclassNoOpFlowControlimplementsFlowControl {
30/** Netty client */31privatefinalNettyClient nettyClient;
3233/**34 * Constructor35 *36 * @param nettyClient netty client37 */38publicNoOpFlowControl(NettyClient nettyClient) {
39this.nettyClient = nettyClient;
40 }
4142 @Override
43publicvoid sendRequest(int destTaskId, WritableRequest request) {
44 nettyClient.doSend(destTaskId, request);
45 }
4647 @Override
48publicvoid messageAckReceived(int taskId, long requestId, int response) { }
4950 @Override
51publicAckSignalFlag getAckSignalFlag(int response) {
52return AckSignalFlag.values()[response];
53 }
5455 @Override
56publicvoid waitAllRequests() { }
5758 @Override
59publicint getNumberOfUnsentRequests() {
60return 0;
61 }
6263 @Override
64publicint calculateResponse(AckSignalFlag alreadyDone, int taskId) {
65return alreadyDone.ordinal();
66 }
6768 @Override
69publicvoid logInfo() { }
70 }