blob: 894df6a83c5c44a74af817a8d54ed6a692670db2 [file] [log] [blame]
/*
*
* 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.qpid.server.model;
import java.util.Set;
@ManagedObject( creatable = false, amqpName = "org.apache.qpid.Session")
public interface Session<X extends Session<X>> extends ConfiguredObject<X>
{
String CHANNEL_ID = "channelId";
// PRODUCER_FLOW_BLOCKED is exposed as an interim step. We will expose attribute(s) that exposing
// available credit of both producer and consumer sides.
String PRODUCER_FLOW_BLOCKED = "producerFlowBlocked";
String TRANSACTION_TIMEOUT_NOTIFICATION_REPEAT_PERIOD = "qpid.session.transactionTimeoutNotificationRepeatPeriod";
@ManagedContextDefault(name = TRANSACTION_TIMEOUT_NOTIFICATION_REPEAT_PERIOD,
description = "Frequency, in milliseconds, with which transaction timeout warnings will be repeated.")
long TRANSACTION_TIMEOUT_NOTIFICATION_REPEAT_PERIOD_DEFAULT = 10000;
String PRODUCER_AUTH_CACHE_SIZE = "producer.authCacheSize";
@ManagedContextDefault(name = PRODUCER_AUTH_CACHE_SIZE,
description = "Maximum number of distinct destinations for which a cached auth value may be held")
int PRODUCER_AUTH_CACHE_SIZE_DEFAULT = 20;
String PRODUCER_AUTH_CACHE_TIMEOUT = "producer.authCacheTimeout";
@ManagedContextDefault(name = PRODUCER_AUTH_CACHE_TIMEOUT,
description = "Maximum time, in milliseconds, for which a cached auth value may be retained")
long PRODUCER_AUTH_CACHE_TIMEOUT_DEFAULT = 300000L;
@DerivedAttribute
int getChannelId();
@DerivedAttribute
boolean isProducerFlowBlocked();
@ManagedStatistic(statisticType = StatisticType.POINT_IN_TIME, units = StatisticUnit.COUNT, label = "Consumers", metricName = "consumers_total")
long getConsumerCount();
@ManagedStatistic(statisticType = StatisticType.POINT_IN_TIME, units = StatisticUnit.MESSAGES, label = "Prefetched")
long getUnacknowledgedMessages();
@ManagedOperation(nonModifying = true,
changesConfiguredObjectState = false,
skipAclCheck = true)
Set<? extends Consumer<?, ?>> getConsumers();
@SuppressWarnings("unused")
@ManagedStatistic(statisticType = StatisticType.CUMULATIVE, units = StatisticUnit.BYTES, label = "Inbound",
description = "Total size of all messages received by this session.", metricName = "inbound_bytes_count")
long getBytesIn();
@SuppressWarnings("unused")
@ManagedStatistic(statisticType = StatisticType.CUMULATIVE, units = StatisticUnit.BYTES, label = "Outbound",
description = "Total size of all messages delivered by this session.", metricName = "outbound_bytes_count")
long getBytesOut();
@SuppressWarnings("unused")
@ManagedStatistic(statisticType = StatisticType.CUMULATIVE, units = StatisticUnit.MESSAGES, label = "Inbound",
description = "Total number of messages delivered by this session.", metricName = "inbound_messages_count")
long getMessagesIn();
@SuppressWarnings("unused")
@ManagedStatistic(statisticType = StatisticType.CUMULATIVE, units = StatisticUnit.MESSAGES, label = "Outbound",
description = "Total number of messages received by this session.", metricName = "outbound_messages_count")
long getMessagesOut();
@SuppressWarnings("unused")
@ManagedStatistic(statisticType = StatisticType.CUMULATIVE, units = StatisticUnit.MESSAGES, label = "Transacted Inbound",
description = "Total number of messages delivered by this session within a transaction.", metricName = "transacted_inbound_messages_count")
long getTransactedMessagesIn();
@SuppressWarnings("unused")
@ManagedStatistic(statisticType = StatisticType.CUMULATIVE, units = StatisticUnit.MESSAGES, label = "Transacted Outbound",
description = "Total number of messages received by this session within a transaction.", metricName = "transacted_outbound_messages_count")
long getTransactedMessagesOut();
}