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

org.apache.rocketmq.client.consumer.MQPushConsumer Maven / Gradle / Ivy

The 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.
 */
package org.apache.rocketmq.client.consumer;

import org.apache.rocketmq.client.consumer.listener.MessageListener;
import org.apache.rocketmq.client.consumer.listener.MessageListenerConcurrently;
import org.apache.rocketmq.client.consumer.listener.MessageListenerOrderly;
import org.apache.rocketmq.client.exception.MQClientException;

/**
 * Push consumer
 */
public interface MQPushConsumer extends MQConsumer {
    /**
     * Start the consumer
     */
    void start() throws MQClientException;

    /**
     * Shutdown the consumer
     */
    void shutdown();

    /**
     * Register the message listener
     */
    @Deprecated
    void registerMessageListener(MessageListener messageListener);

    void registerMessageListener(final MessageListenerConcurrently messageListener);

    void registerMessageListener(final MessageListenerOrderly messageListener);

    /**
     * Subscribe some topic
     *
     * @param subExpression subscription expression.it only support or operation such as "tag1 || tag2 || tag3" 
if * null or * expression,meaning subscribe * all */ void subscribe(final String topic, final String subExpression) throws MQClientException; /** * This method will be removed in the version 5.0.0,because filterServer was removed,and method subscribe(final String topic, final MessageSelector messageSelector) * is recommended. * * Subscribe some topic * * @param fullClassName full class name,must extend org.apache.rocketmq.common.filter. MessageFilter * @param filterClassSource class source code,used UTF-8 file encoding,must be responsible for your code safety */ @Deprecated void subscribe(final String topic, final String fullClassName, final String filterClassSource) throws MQClientException; /** * Subscribe some topic with selector. *

* This interface also has the ability of {@link #subscribe(String, String)}, * and, support other message selection, such as {@link org.apache.rocketmq.common.filter.ExpressionType#SQL92}. *

*

*

* Choose Tag: {@link MessageSelector#byTag(java.lang.String)} *

*

*

* Choose SQL92: {@link MessageSelector#bySql(java.lang.String)} *

* * @param selector message selector({@link MessageSelector}), can be null. */ void subscribe(final String topic, final MessageSelector selector) throws MQClientException; /** * Unsubscribe consumption some topic * * @param topic message topic */ void unsubscribe(final String topic); /** * Update the consumer thread pool size Dynamically */ void updateCorePoolSize(int corePoolSize); /** * Suspend the consumption */ void suspend(); /** * Resume the consumption */ void resume(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy