Sets maximum number of events that are read when the next preload occurs @param nrof Maximum number of events to read. If less than 1, default value ( DEFAULT_NROF_PRELOAD ) is used.
(int nrof)
| 68 | * value ( {@value DEFAULT_NROF_PRELOAD} ) is used. |
| 69 | */ |
| 70 | public void setNrofPreload(int nrof) { |
| 71 | if (nrof < 1) { |
| 72 | nrof = DEFAULT_NROF_PRELOAD; |
| 73 | } |
| 74 | this.nrofPreload = nrof; |
| 75 | } |
| 76 | |
| 77 | private void init(String eeFilePath) { |
| 78 | this.eventsFile = new File(eeFilePath); |