| From: | Francisco Javier Morosini Eguren <francisco(dot)morosini(at)gmail(dot)com> | 
|---|---|
| To: | pgsql-jdbc(at)postgresql(dot)org | 
| Subject: | PgNotificationHelper | 
| Date: | 2012-03-07 02:00:54 | 
| Message-ID: | CABofrE1O+EYQkZjY8Oms6N7kV7SPA-Bqu2S9qWTkCgzk4PLcoQ@mail.gmail.com | 
| Views: | Whole Thread | Raw Message | Download mbox | Resend email | 
| Thread: | |
| Lists: | pgsql-jdbc | 
Hello i try to use PgNotificationHelper (
http://wiki.postgresql.org/wiki/PgNotificationPoller) , the method:
        // not synchronized, must not access pub members
        private boolean poll() {
            assert(status == Status.LISTENING);
            assert(Thread.currentThread().
equals(this));
            try {
                lastPollTimeMs = System.currentTimeMillis();
                helper.poll();
                return true;
            } catch (SQLException e) {
                reportSQLException("Polling for notifications failed, will
try to reconnect", e);
                return false;
            }
        }
method poll in class notify.PgNotificationHelper cannot be applied to given
types required: java.sql.Connection, long, boolean found: no argument.
i know i need to add the parameters, because the parent class have:
public void poll(Connection conn, long pg_backend_pid, boolean
useDummyStatement) throws SQLException {
but, why in PgNotificationHelper don't pass the arguments? is an error?
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Anton Bobov | 2012-03-07 09:10:06 | Updatable query and column aliases | 
| Previous Message | Thomas Kellerer | 2012-03-06 19:09:08 | Driver does not return comments for types |