Uses of Class
org.glite.rgma.UnknownResourceException

Uses of UnknownResourceException in org.glite.rgma
 

Methods in org.glite.rgma that throw UnknownResourceException
 void Consumer.abort()
          Aborts the current query.
 void Resource.close()
          Closes the resource.
 int Consumer.count()
          Deprecated.  
 void OnDemandProducer.declareStaticTable(java.lang.String tableName, java.lang.String predicate)
          Declares a static table into which this Producer can publish.
 void SecondaryProducer.declareTable(java.lang.String tableName, java.lang.String predicate, TimeInterval historyRetentionPeriod)
          Declares a table, specifying the retention period for history tuples.
 void PrimaryProducer.declareTable(java.lang.String tableName, java.lang.String predicate, TimeInterval historyRetentionPeriod, TimeInterval latestRetentionPeriod)
          Declares a table, specifying the retention period for history and latest tuples.
 void Resource.destroy()
          Closes and destroys the resource.
 TimeInterval PrimaryProducer.getHistoryRetentionPeriod(java.lang.String tableName)
          Gets the retention period that is applied to history tuples for the specified table.
 TimeInterval SecondaryProducer.getHistoryRetentionPeriod(java.lang.String tableName)
          Gets the retention period that is applied to history tuples for the specified table.
 TimeInterval PrimaryProducer.getLatestRetentionPeriod(java.lang.String tableName)
          Gets the retention period that is applied to latest tuples for the specified table.
 TimeInterval Resource.getTerminationInterval()
          Retrieves the resource's termination interval.
 boolean Consumer.hasAborted()
          Determines if the last query has aborted.
 void PrimaryProducer.insert(java.lang.String insertStatement)
          Publishes data by inserting a tuple into a table, both specified by the SQL INSERT statement.
 void PrimaryProducer.insert(java.lang.String insertStatement, TimeInterval latestRetentionPeriod)
          Publishes data by inserting a tuple into a table, both specified by the SQL INSERT statement.
 void PrimaryProducer.insertList(StringList insertStatements)
          Publishes using a list of SQL INSERT statements.
 void PrimaryProducer.insertList(StringList insertStatements, TimeInterval latestRetentionPeriod)
          Publishes using a list of SQL INSERT statements.
 boolean Consumer.isExecuting()
          Deprecated. Use ResultSet#endOfResults
 ResultSet Consumer.pop(int maxCount)
          Retrieves at most maxCount tuples from the consumer that it has received from producers.
 ResultSet Consumer.popAll()
          Deprecated.  
 Consumer ConsumerFactory.reconnectConsumer(ResourceEndpoint resourceEndpoint)
          Reconnects to an existing Consumer resource.
 OnDemandProducer ProducerFactory.reconnectOnDemandProducer(ResourceEndpoint resourceEndpoint)
          Reconnects to an existing OnDemandProducer resource.
 PrimaryProducer ProducerFactory.reconnectPrimaryProducer(ResourceEndpoint resourceEndpoint)
          Reconnects to an existing PrimaryProducer resource.
 SecondaryProducer ProducerFactory.reconnectSecondaryProducer(ResourceEndpoint resourceEndpoint)
          Reconnects to an existing SecondaryProducer resource.
 void Resource.setTerminationInterval(TimeInterval terminationInterval)
          Deprecated. Termination interval can only be set in factory create method.
 void Resource.showSignOfLife()
          Indicates to the resource that this API is still alive.
 void Consumer.start(TimeInterval timeout)
          Starts this consumer's query, using the mediator to locate producers, terminating after the specified time interval.
 void Consumer.start(TimeInterval timeout, ResourceEndpointList producers)
          Starts this consumer's query, contacting the specified producers, terminating after the specified time interval.