All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.qpid.framing.ServerMethodDispatcher Maven / Gradle / Ivy

There is a newer version: 6.1.7
Show newest version
/*
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 *
 */

/*
 * This file is auto-generated by Qpid Gentools v.0.1 - do not modify.
 * Supported AMQP version:
  *   0-9
  *   0-91
  *   8-0
  */

package org.apache.qpid.framing;

import org.apache.qpid.QpidException;

public interface ServerMethodDispatcher
{
    boolean dispatchAccessRequest(AccessRequestBody accessRequestBody, int channelId) throws QpidException;

    public boolean dispatchBasicAck(BasicAckBody body, int channelId) throws QpidException;
    public boolean dispatchBasicCancel(BasicCancelBody body, int channelId) throws QpidException;
    public boolean dispatchBasicConsume(BasicConsumeBody body, int channelId) throws QpidException;
    public boolean dispatchBasicGet(BasicGetBody body, int channelId) throws QpidException;
    public boolean dispatchBasicPublish(BasicPublishBody body, int channelId) throws QpidException;
    public boolean dispatchBasicQos(BasicQosBody body, int channelId) throws QpidException;
    public boolean dispatchBasicRecover(BasicRecoverBody body, int channelId) throws QpidException;
    public boolean dispatchBasicReject(BasicRejectBody body, int channelId) throws QpidException;
    public boolean dispatchChannelClose(ChannelCloseBody body, int channelId) throws QpidException;
    public boolean dispatchChannelCloseOk(ChannelCloseOkBody body, int channelId) throws QpidException;
    public boolean dispatchChannelFlow(ChannelFlowBody body, int channelId) throws QpidException;
    public boolean dispatchChannelFlowOk(ChannelFlowOkBody body, int channelId) throws QpidException;
    public boolean dispatchChannelOpen(ChannelOpenBody body, int channelId) throws QpidException;
    public boolean dispatchConnectionClose(ConnectionCloseBody body, int channelId) throws QpidException;
    public boolean dispatchConnectionCloseOk(ConnectionCloseOkBody body, int channelId) throws QpidException;
    public boolean dispatchConnectionOpen(ConnectionOpenBody body, int channelId) throws QpidException;
    public boolean dispatchConnectionSecureOk(ConnectionSecureOkBody body, int channelId) throws QpidException;
    public boolean dispatchConnectionStartOk(ConnectionStartOkBody body, int channelId) throws QpidException;
    public boolean dispatchConnectionTuneOk(ConnectionTuneOkBody body, int channelId) throws QpidException;
    public boolean dispatchExchangeBound(ExchangeBoundBody body, int channelId) throws QpidException;
    public boolean dispatchExchangeDeclare(ExchangeDeclareBody body, int channelId) throws QpidException;
    public boolean dispatchExchangeDelete(ExchangeDeleteBody body, int channelId) throws QpidException;
    public boolean dispatchQueueBind(QueueBindBody body, int channelId) throws QpidException;
    public boolean dispatchQueueDeclare(QueueDeclareBody body, int channelId) throws QpidException;
    public boolean dispatchQueueDelete(QueueDeleteBody body, int channelId) throws QpidException;
    public boolean dispatchQueuePurge(QueuePurgeBody body, int channelId) throws QpidException;
    public boolean dispatchTxCommit(TxCommitBody body, int channelId) throws QpidException;
    public boolean dispatchTxRollback(TxRollbackBody body, int channelId) throws QpidException;
    public boolean dispatchTxSelect(TxSelectBody body, int channelId) throws QpidException;

    boolean dispatchQueueUnbind(QueueUnbindBody queueUnbindBody, int channelId) throws QpidException;

    boolean dispatchBasicRecoverSync(BasicRecoverSyncBody basicRecoverSyncBody, int channelId) throws QpidException;

    boolean dispatchConfirmSelect(ConfirmSelectBody confirmSelectBody, int channelId) throws QpidException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy