| org.compass.gps.MirrorDataChangesGpsDevice
All known Subclasses: org.compass.gps.device.AbstractMirrorGpsDevice, org.compass.gps.device.AbstractMirrorGpsDeviceWrapper,
MirrorDataChangesGpsDevice | public interface MirrorDataChangesGpsDevice extends CompassGpsDevice(Code) | | A Gps Device that can also perform mirroring operation. Mirror operations
means that the device can reflect real time data changes done in the data
source to the index. In other words, the device can detect all the changes
made to the data source since the last indexing/mirroring operation and
reflect it to the index.
author: kimchy |
Method Summary | |
public boolean | isMirrorDataChanges() Should the device perform real time data mirroring. | public void | setMirrorDataChanges(boolean mirrorDataChanges) Sets if the device will perform real time data changes mirroring. |
isMirrorDataChanges | public boolean isMirrorDataChanges()(Code) | | Should the device perform real time data mirroring.
true if the device mirror data changes |
setMirrorDataChanges | public void setMirrorDataChanges(boolean mirrorDataChanges)(Code) | | Sets if the device will perform real time data changes mirroring.
Parameters: mirrorDataChanges - Should the device mirror data changes |
|
|