[teiid-issues] [JBoss JIRA] (TEIID-1800) Async Event Processing: Standardize JDBC Callback API

Steven Hawkins (Updated) (JIRA) jira-events at lists.jboss.org
Tue Nov 1 15:32:45 EDT 2011


     [ https://issues.jboss.org/browse/TEIID-1800?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Steven Hawkins updated TEIID-1800:
----------------------------------

        Fix Version/s: 7.6
    Affects Version/s: 7.6
          Description: 
The existing callback API used by ODBC should be standardized and made friendly for async processing.  Basically, an interface that specifies three methods should suffice:
   public void processRow(ResultSet rs);
   public void onComplete();
   public void onException(Exception e);

  was:
The existing callback API used by ODBC should be standardized and made friendly for async event processing.  Basicaly, an interface that specifies three methods should suffice:
   public void onResult(ResultSet rs);
   public void onComplete();
   public void onException(Exception e);

Should address the specific semantics of the result set returned in the onResult() method. 

          Component/s: JDBC Driver
              Affects: Documentation (Ref Guide, User Guide, etc.),Release Notes


Updated the issue for 7.6.  Changed the callback interface to reference processing rows rather than the full resultset.
                
> Async Event Processing: Standardize JDBC Callback API
> -----------------------------------------------------
>
>                 Key: TEIID-1800
>                 URL: https://issues.jboss.org/browse/TEIID-1800
>             Project: Teiid
>          Issue Type: Feature Request
>          Components: JDBC Driver
>    Affects Versions: 7.6
>            Reporter: Mark Addleman
>            Assignee: Steven Hawkins
>             Fix For: 7.6
>
>
> The existing callback API used by ODBC should be standardized and made friendly for async processing.  Basically, an interface that specifies three methods should suffice:
>    public void processRow(ResultSet rs);
>    public void onComplete();
>    public void onException(Exception e);

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the teiid-issues mailing list