170171172173174175176177
return ret; } public Message receiveNoWait() throws JMSException { HeuristicMessage msg = null; return receiveNoWait ( msg ); }
176177178179180181182183
return receiveNoWait ( msg ); } public Message receive ( long timeout ) throws JMSException { HeuristicMessage msg = null; return receive ( msg, timeout ); }
221222223224225226227228
} public Message receive () throws JMSException { HeuristicMessage msg = null; return receive ( msg ); }
277278279280281282283284
* @see javax.sql.DataSource#getConnection() */ public Connection getConnection () throws SQLException { HeuristicMessage m = null; return getConnection ( m ); }
284285286287288289290291
} public Connection getConnection ( String user , String pw ) throws SQLException { HeuristicMessage m = null; return getConnection ( user, pw, m ); }
210211212213214215216217
* @see javax.sql.DataSource */ public Connection getConnection () throws SQLException { HeuristicMessage msg = null; return getConnection ( msg ); }
369370371372373374375376
/** * @see com.atomikos.jdbc.HeuristicDataSource#getConnection(java.lang.String) */ public Connection getConnection ( String msg ) throws SQLException { HeuristicMessage hm = new StringHeuristicMessage ( msg ); return getConnection ( hm ); }
380381382383384385386387
* java.lang.String, java.lang.String) */ public Connection getConnection ( String user , String passwd , String msg ) throws SQLException { HeuristicMessage hm = new StringHeuristicMessage ( msg ); return getConnection ( user, passwd, hm ); }