Documentation Archive Developer
Search
PATH  Documentation > WebObjects 4.5 > EOControl Reference

Table of Contents

EOFaulting


Implemented by:
EODeferredFaulting
EOEnterpriseObject
EOCustomObject
EOGenericRecord
Package:
com.apple.client.eocontrol
com.apple.yellow.eocontrol

Interface Description


The EOFaulting interface together with the EOFaultHandler class forms a general mechanism for postponing an object's initialization until its actually needed. In it's pre-initialization state, an EOFaulting object is known as a fault. When the object is sent a message to which it can't respond without initializing, it uses a fault handler to fire, or to finish initializing. Faults are most commonly used by the access layer to represent an object not yet fetched from the database, but that must nonetheless exist as an instance in the application-typically because it's the destination of a relationship. Consequently, a fault typically fires when an attempt is made to access any of its data. In this case, firing a fault involves fetching the object's data.

The default implementations of EOFaulting in EOCustomObject and EOGenericRecord are sufficient for most purposes. If you need custom faulting behavior, you typically create a subclass of EOFaultHandler to accommodate different means of converting faults into regular objects; there's rarely a need to override the default implementations of EOFaulting.


Creating a Fault

In Yellow Box, you create a fault with the EOFaultHandler method makeObjectIntoFault. In Java Client, you create a fault by sending an newly created object a turnIntoFault message, providing an EOFaultHandler that will later help the fault to fire. This fault handler should be considered completely the private property of the fault. You shouldn't send it any messages, instead dealing exclusively with the fault.


Firing a Fault

A fault is fired when it can't respond to a message without completing its initialization. Any of the object's methods that requires initialization trigger the firing, This is generally accomplished by invoking the willRead method. For example, in the typical case of an object that needs to fetch it's data from a database upon firing, willRead is invoked from the object's "get" methods, such as the following:

public String roleName() {
    willRead();
    return roleName;
}

The default implementations of willRead provided by EOCustomObject and EOGenericRecord take care of using the object's fault handler to finish initialization. For more information on a fault handler's role, see the EOFaultHandler class specification.



Instance Methods



clearFault

public abstract void clearFault()

(com.apple.client.eocontrol only) Restores the receiver to its status prior to the turnIntoFault message that turned the object into a fault. Throws an exception if the receiver isn't a fault.

You rarely use this method. Rather, it's invoked by an EOFaultHandler during the process of firing the fault. For more information, see the EOFaultHandler class specification.



faultHandler

public abstract EOFaultHandler faultHandler()

(com.apple.client.eocontrol only) If the receiver is a fault, returns its fault handler; otherwise returns nil.

isFault

public abstract boolean isFault()

(com.apple.client.eocontrol only) Returns true if the receiver is a fault, false otherwise.

turnIntoFault

public abstract void turnIntoFault(EOFaultHandler aFaultHandler)

(com.apple.client.eocontrol only) Converts the receiver into a fault, assigning aFaultHandler as the object that stores its original state and later converts the fault back into a normal object (typically by fetching data from an external repository). The receiver becomes the owner of aFaultHandler; you shouldn't assign it to another object.



willRead

public abstract void willRead()

Fills the receiver with values fetched from the database. Before your application attempts to message an object, you must ensure that it has been filled with its data. To do this, enterprise objects invoke the method willRead prior to any attempt to access the object's state, most typically in "get" methods such as the following:
public String roleName() {
    willRead();
    return roleName;
}




Table of Contents