_maxBatchSizeDefault.insert_long(_maxBatchSize);
////////////////////
defaultChannelQoS_ = new Property[] {
new Property(EventReliability.value, eventReliabilityLow_),
new Property(ConnectionReliability.value,
connectionReliabilityLow_),
new Property(Priority.value, priorityDefault_),
new Property(MaxEventsPerConsumer.value,
maxEventsPerConsumerDefault_),
new Property(Timeout.value, timeoutDefault_),
new Property(StartTimeSupported.value,
_isStartTimeSupportedDefault),
new Property(StopTimeSupported.value,
_isStartTimeSupportedDefault),
new Property(MaximumBatchSize.value,
_maxBatchSizeDefault)
};
defaultAdminQoS_ = new Property[] {
new Property(ConnectionReliability.value,
connectionReliabilityLow_),
new Property(Priority.value, priorityDefault_),
new Property(MaxEventsPerConsumer.value,
maxEventsPerConsumerDefault_),
new Property(Timeout.value, timeoutDefault_),
new Property(StartTimeSupported.value,
_isStartTimeSupportedDefault),
new Property(StopTimeSupported.value,
_isStartTimeSupportedDefault),
new Property(MaximumBatchSize.value, _maxBatchSizeDefault)
};
}