[
https://issues.apache.org/jira/browse/GEODE-2665?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16295209#comment-16295209
]
ASF GitHub Bot commented on GEODE-2665:
---------------------------------------
pdxrunner commented on a change in pull request #1116: GEODE-2665: Add Gfsh
command to delete async event queues
URL: https://github.com/apache/geode/pull/1116#discussion_r157533029
##########
File path:
geode-core/src/main/java/org/apache/geode/management/internal/cli/functions/DestroyAsyncEventQueueFunction.java
##########
@@ -0,0 +1,85 @@
+/*
+ * 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.geode.management.internal.cli.functions;
+
+import org.apache.logging.log4j.Logger;
+
+import org.apache.geode.cache.Region;
+import org.apache.geode.cache.asyncqueue.internal.AsyncEventQueueImpl;
+import org.apache.geode.cache.execute.Function;
+import org.apache.geode.cache.execute.FunctionAdapter;
+import org.apache.geode.cache.execute.FunctionContext;
+import org.apache.geode.internal.InternalEntity;
+import org.apache.geode.internal.cache.xmlcache.CacheXml;
+import
org.apache.geode.management.internal.cli.commands.DestroyAsyncEventQueueCommand;
+import org.apache.geode.management.internal.configuration.domain.XmlEntity;
+
+/**
+ * Function used by the 'create async-event-queue' gfsh command to create an
asynchronous event
+ * queue on a member.
+ *
+ * @since GemFire 8.0
+ */
+public class DestroyAsyncEventQueueFunction implements Function,
InternalEntity {
+
+ private static final long serialVersionUID = -7754359270344102817L;
+
+ @Override
+ public void execute(FunctionContext context) {
+ String memberId = "";
+
+ DestroyAsyncEventQueueFunctionArgs aeqArgs =
+ (DestroyAsyncEventQueueFunctionArgs) context.getArguments();
+ String aeqId = aeqArgs.getId();
+ memberId = context.getMemberName();
+
+ try {
+ AsyncEventQueueImpl aeq = (AsyncEventQueueImpl)
context.getCache().getAsyncEventQueue(aeqId);
+ if (aeq == null) {
+ if (aeqArgs.isIfExists()) {
+ context.getResultSender()
+ .lastResult(new CliFunctionResult(memberId, true,
+ String.format(
+ "Skipping: "
+ +
DestroyAsyncEventQueueCommand.DESTROY_ASYNC_EVENT_QUEUE__AEQ_0_NOT_FOUND,
+ aeqId)));
+ } else {
+ context.getResultSender().lastResult(new CliFunctionResult(memberId,
false, String.format(
+
DestroyAsyncEventQueueCommand.DESTROY_ASYNC_EVENT_QUEUE__AEQ_0_NOT_FOUND,
aeqId)));
+ }
+ } else {
+ aeq.stop();
+ aeq.destroy();
+ XmlEntity xmlEntity = getAEQXmlEntity("name", aeqId);
+ context.getResultSender()
+ .lastResult(new CliFunctionResult(memberId, xmlEntity,
String.format(
+
DestroyAsyncEventQueueCommand.DESTROY_ASYNC_EVENT_QUEUE__AEQ_0_DESTROYED,
aeqId)));
+ }
+ } catch (Exception e) {
+ e.printStackTrace();
Review comment:
Deleted. This was added while debugging and was not intended to remain in
production code.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
> Add gfsh command to destroy async-event-queue
> ---------------------------------------------
>
> Key: GEODE-2665
> URL: https://issues.apache.org/jira/browse/GEODE-2665
> Project: Geode
> Issue Type: Sub-task
> Components: docs, gfsh
> Reporter: Swapnil Bawaskar
> Assignee: Kenneth Howe
> Fix For: 1.4.0
>
>
> Currently, there is only an {{create async-event-queue}} command in gfsh, we
> need the corresponding {{destroy async-event-queue}}
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)