tydhot commented on a change in pull request #300: URL: https://github.com/apache/dubbo-go-pixiu/pull/300#discussion_r753801407
########## File path: pkg/client/mq/facade.go ########## @@ -0,0 +1,92 @@ +/* + * 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 mq + +import ( + "context" + "strings" +) + +type ConsumerFacade interface { + // Subscribe message with specified broker and Topic, then handle msg with handler which send msg to real consumers + Subscribe(ctx context.Context, option ...Option) error + UnSubscribe(opts ...Option) error + Stop() +} + +func GetConsumerManagerKey(topic []string, consumerGroup string) string { + return strings.Join((topic), ".") + "_" + consumerGroup +} + +// MQOptions Consumer options +// TODO: Add rocketmq params +type MQOptions struct { Review comment: 这个我觉得暂时问题不大 后面再简化也不迟 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org For additional commands, e-mail: notifications-h...@dubbo.apache.org