flex.management.runtime.messaging.MessageBrokerControlMBean Maven / Gradle / Ivy
/*
* 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 flex.management.runtime.messaging;
import flex.management.BaseControlMBean;
import java.io.IOException;
import java.util.Date;
import javax.management.ObjectName;
/**
* Defines the runtime monitoring and management interface for managed MessageBroker
s.
*/
public interface MessageBrokerControlMBean extends BaseControlMBean
{
/**
* Returns true
if the MessageBroker
is running.
*
* @return true
if the MessageBroker
is running.
* @throws IOException Throws IOException.
*/
Boolean isRunning() throws IOException;
/**
* Returns the start timestamp for the MessageBroker
.
*
* @return The start timestamp for the MessageBroker
.
* @throws IOException Throws IOException.
*/
Date getStartTimestamp() throws IOException;
/**
* Returns the ObjectName
s for endpoints that are registered with the
* managed MessageBroker
.
*
* @return The ObjectName
s for endpoints registered with the managed MessageBroker
.
* @throws IOException Throws IOException.
*/
ObjectName[] getEndpoints() throws IOException;
/**
* Returns the ObjectName
s for services that are registered with the
* managed MessageBroker
.
*
* @return The ObjectName
s for services registered with the managed MessageBroker
.
* @throws IOException Throws IOException.
*/
ObjectName[] getServices() throws IOException;
/**
* Returns Flex session count for the MessageBroker
.
*
* @return Flex session count for the MessageBroker
.
* @throws IOException Throws IOException.
*/
Integer getFlexSessionCount() throws IOException;
/**
* Returns the maximum concurrent Flex session count for the
* MessageBroker
in the current hour.
*
* @return The maximum concurrent Flex session count for the
* MessageBroker
over the course of the last hour.
* @throws IOException Throws IOException.
*/
Integer getMaxFlexSessionsInCurrentHour() throws IOException;
/**
* Returns the number of Enterprise Connections across all
* Enterprise Endpoints.
*
* @return The number of Enterprise Connections
* @throws IOException Throws IOException.
*/
Integer getEnterpriseConnectionCount() throws IOException;
/**
* Returns the total number of bytes passing through all AMF endpoints.
*
* @return The total number of bytes passing through all AMF endpoints.
* @throws IOException Throws IOException.
*/
Long getAMFThroughput() throws IOException;
/**
* Returns the total number of bytes passing through all HTTP endpoints.
*
* @return The total number of bytes passing through all HTTP endpoints.
* @throws IOException Throws IOException.
*/
Long getHTTPThroughput() throws IOException;
/**
* Returns the total number of bytes passing through all Enterprise endpoints.
*
* @return The total number of bytes passing through all Enterprise endpoints.
* @throws IOException Throws IOException.
*/
Long getEnterpriseThroughput() throws IOException;
/**
* Returns the total number of bytes passing through all streaming AMF endpoints.
*
* @return The total number of bytes passing through all streaming AMF endpoints.
* @throws IOException Throws IOException.
*/
Long getStreamingAMFThroughput() throws IOException;
/**
* Returns the total number of bytes passing through all streaming HTTP endpoints.
*
* @return The total number of bytes passing through all streaming HTTP endpoints.
* @throws IOException Throws IOException.
*/
Long getStreamingHTTPThroughput() throws IOException;
}