Author: sebb
Date: Tue Feb 20 16:00:40 2007
New Revision: 509821

URL: http://svn.apache.org/viewvc?view=rev&rev=509821
Log:
Make non-serialisable field transient

Modified:
    
jakarta/jmeter/branches/rel-2-2/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/JMSSampler.java

Modified: 
jakarta/jmeter/branches/rel-2-2/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/JMSSampler.java
URL: 
http://svn.apache.org/viewvc/jakarta/jmeter/branches/rel-2-2/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/JMSSampler.java?view=diff&rev=509821&r1=509820&r2=509821
==============================================================================
--- 
jakarta/jmeter/branches/rel-2-2/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/JMSSampler.java
 (original)
+++ 
jakarta/jmeter/branches/rel-2-2/src/protocol/jms/org/apache/jmeter/protocol/jms/sampler/JMSSampler.java
 Tue Feb 20 16:00:40 2007
@@ -86,26 +86,26 @@
        /** Factory for the connections to the queueing system. */
        // NOTUSED private QueueConnectionFactory factory;
        /** Queue for receiving messages (if applicable). */
-       private Queue receiveQueue;
+       private transient Queue receiveQueue;
 
        /** The session with the queueing system. */
-       private QueueSession session;
+       private transient QueueSession session;
 
        /** Connection to the queueing system. */
-       private QueueConnection connection;
+       private transient QueueConnection connection;
 
        /** Queue for sending messages. */
-       private Queue sendQueue;
+       private transient Queue sendQueue;
 
        /** Is the communication oneway? */
        // NOTUSED private boolean oneway;
        /** The executor for (pseudo) synchronous communication. */
-       private QueueExecutor executor;
+       private transient QueueExecutor executor;
 
        /** Producer of the messages. */
-       private QueueSender producer;
+       private transient QueueSender producer;
 
-       private Receiver receiverThread = null;
+       private transient Receiver receiverThread = null;
 
        /*
         * (non-Javadoc)



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to