MCPcopy Create free account
hub / github.com/akeranen/the-one / setNrofPreload

Method setNrofPreload

input/ExternalEventsQueue.java:70–75  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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);

Callers 1

ExternalEventsQueueMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected