1 22 package org.jboss.mq.kernel; 23 24 import org.jboss.mq.pm.CacheStore; 25 26 32 public class MessageCache extends org.jboss.mq.server.MessageCache 33 { 34 protected void setupCacheStore() throws Exception  35 { 36 } 37 38 public void setPersistenceManager(CacheStore cs) 39 { 40 cacheStore = cs; 41 } 42 43 public void create() throws Exception  44 { 45 } 46 47 public void start() throws Exception  48 { 49 super.startService(); 50 } 51 52 public void stop() 53 { 54 super.stopService(); 55 } 56 57 public void destroy() 58 { 59 } 60 } 61 | Popular Tags |