Searched refs:putNoReturn (Results 1 - 3 of 3) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/
H A DPrimaryIndex.java95 * <p>The {@link #putNoReturn} method can be used to avoid the overhead of
97 * the application. The return type of {@link #putNoReturn} is void. For
101 * primaryIndex.putNoReturn(new Employee(1, "Jane Smith")); // Inserts an entity
102 * primaryIndex.putNoReturn(new Employee(2, "Joan Smith")); // Inserts an entity
103 * primaryIndex.putNoReturn(new Employee(2, "Joan M. Smith")); // Updates an entity</pre>
156 * primaryIndex.putNoReturn(employee); // Inserts an entity
159 * primaryIndex.putNoReturn(employee); // Inserts an entity
172 * primaryIndex.putNoReturn(employee); // Inserts an entity
175 * primaryIndex.putNoReturn(employee); // Inserts an entity
178 * primaryIndex.putNoReturn(employe
399 public void putNoReturn(E entity) method in class:PrimaryIndex
420 public void putNoReturn(Transaction txn, E entity) method in class:PrimaryIndex
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/persist/test/
H A DSequenceTest.java102 index.putNoReturn(entity);
106 index.putNoReturn(entity);
110 index.putNoReturn(entity);
H A DIndexTest.java208 /* putNoReturn() */
209 primary.putNoReturn(txn, new MyEntity(2));

Completed in 107 milliseconds