01: package org.huihoo.jfox.pool;
02:
03: /**
04: *
05: * @author <a href="mailto:young_yy@hotmail.com">Young Yang</a>
06: */
07:
08: public class TestPoolableObject implements PoolableObject {
09:
10: public void activate() throws Exception {
11: System.out.println("activate");
12: }
13:
14: public void passivate() throws Exception {
15: System.out.println("passivate");
16: }
17:
18: public String say() {
19: return "Hello, World!";
20: }
21:
22: }
|