1 /** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE 4 * file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file 5 * to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the 6 * License. You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on 11 * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the 12 * specific language governing permissions and limitations under the License. 13 */ 14 15 package org.apache.activemq.broker.region.policy; 16 17 import org.apache.activemq.broker.region.Queue; 18 import org.apache.activemq.broker.region.cursors.PendingMessageCursor; 19 import org.apache.activemq.broker.region.cursors.VMPendingMessageCursor; 20 import org.apache.activemq.kaha.Store; 21 22 /** 23 * Creates a VMPendingMessageCursor 24 * * 25 * @org.apache.xbean.XBean element="vmQueueCursor" description="Pending messages held in the JVM" 26 * 27 * @version $Revision$ 28 */ 29 public class VMPendingQueueMessageStoragePolicy implements PendingQueueMessageStoragePolicy{ 30 31 /** 32 * @param queue 33 * @param tmpStore 34 * @return the cursor 35 */ 36 public PendingMessageCursor getQueuePendingMessageCursor(Queue queue,Store tmpStore){ 37 return new VMPendingMessageCursor(); 38 } 39 } 40