Uses of Interface
org.apache.jdo.impl.fostore.Request

Uses of Request in org.apache.jdo.impl.fostore
 

Subinterfaces of Request in org.apache.jdo.impl.fostore
(package private)  interface FieldRequest
          Represents a request to manipulate (read or update) the fields of an object.
 

Classes in org.apache.jdo.impl.fostore that implement Request
(package private)  class AbstractFieldRequest
          This is an AbstractRequest that uses an exception-throwing implementation FieldManager to implement that interface.
(package private)  class AbstractRequest
          Base implementation for all Request subtypes.
(package private)  class ActivateClassRequest
          Represents a request to cause the description of a class in the client to have a representation in the store.
(package private)  class BeginTxRequest
          Represents a request to inform the store that a transaction is beginning.
(package private)  class CommitRequest
          Represents a request to cause previous insert, update, and so on operations since the previous Commit or Rollback request to commit to the datastore.
(package private)  class CreateOIDRequest
          Causes a datastore OID to be associated with a provisional OID.
(package private)  class DeleteRequest
          Represents a requests to remove a persistent object in the store.
(package private)  class DumpRequest
          Represents a request to dump information from the store.
(package private)  class FetchRequest
          Represents a request to read the values of one or more fields for a persistent object from the store.
(package private)  class GetClassRequest
          Represents a request to get the java.lang.Class corresponding to a CLID.
(package private)  class GetExtentRequest
          Represents a request to get the extent of a class and possibly its subclasses.
(package private)  class GetInstancesRequest
          Represents a request to fetch a batch of instances.
(package private)  class InsertRequest
          Represents a request to write a new object to the datastore.
(package private)  class LoginRequest
          Request to login to a database.
(package private)  class RollbackRequest
          Represents a request to cause operations since the previous Commit or Rollback request to rollback.
(package private)  class UpdateRequest
          Represents a request to change one or more fields of a persistent object in the store.
(package private)  class VerifyRequest
          Represents a request to verify that in-memory data is the same as that in the database.
 

Methods in org.apache.jdo.impl.fostore that return Request
(package private)  Request Message.getRequest(RequestId requestId)
          Provides the Request corresponding to the give requestId, removing it from the internal map of requests (i.e., subsequent getRequest invocations for the same requestId will return null).
 

Methods in org.apache.jdo.impl.fostore with parameters of type Request
(package private)  void Message.putRequest(RequestId requestId, Request request)
          Maps the given request to the given requestId.