- Timestamp:
- 10/06/20 13:12:31 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/geniusweb/partiesserver/repository/RunningParty.java
r18 r21 10 10 11 11 import geniusweb.actions.PartyId; 12 import geniusweb.connection.DefaultConnection;13 12 import geniusweb.inform.Inform; 14 13 import geniusweb.partiesserver.RunningPartiesUpdater; … … 52 51 * @param party the new party 53 52 * @param id the new id for the party. 53 * @param name the name, this should match the filename 54 54 * @param start the start date for this party. Usually set to current time. 55 55 * @param end the end date for this party … … 72 72 73 73 /** 74 * Create instance from availableparty75 *76 74 * @param availableparty the {@link AvailableParty} 77 * @param name the (file)name78 75 * @param maxlifetimems the maximum life time for this party (ms). The 79 76 * party will be killed and removed after this point. … … 81 78 * time plus the worst time to actual start up of the 82 79 * negotiation 83 * @throws IllegalAccessException 84 * @throws InstantiationException 80 * @return a new RunningParty being an instance of availableparty 81 * @throws IllegalAccessException if the class or its nullary constructor is 82 * not accessible. 83 * 84 * @throws InstantiationException if this Class represents an abstract 85 * class, an interface, an array class, a 86 * primitive type, or void; or if the class 87 * has no nullary constructor; or if the 88 * instantiation fails for some other reason. 89 * 85 90 */ 86 91 public static RunningParty create(AvailableParty availableparty, … … 104 109 * {@link RunningPartiesUpdater} will keep an eye on the 105 110 * time and handle removal after time is up. 106 * 107 */ 108 public static RunningParty create(Party party, String name, 111 * @return new RunningParty created from the Party instance. 112 * 113 */ 114 private static RunningParty create(Party party, String name, 109 115 long maxRunTimeMS) { 110 116 if (maxRunTimeMS <= 0) { … … 133 139 134 140 /** 135 * The name, this should match the filename in the repo (without the .jar).136 * 137 * @return141 * @return The name, this should match the filename in the repo (without the 142 * .jar). 143 * 138 144 */ 139 145 public String getName() { … … 207 213 208 214 /** 209 * You must have called {@link # connect(DefaultConnection)} before calling215 * You must have called {@link #withConnection(PartySocket)} before calling 210 216 * this. 211 217 * 212 * @param info 218 * @param info the {@link Inform} to be sent to the {@link #connection} 213 219 */ 214 220 public void inform(Inform info) {
Note:
See TracChangeset
for help on using the changeset viewer.