Changeset 75 for trunk/src/main/java/omq/common/message/Request.java
- Timestamp:
- 07/02/13 11:50:11 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/main/java/omq/common/message/Request.java
r58 r75 23 23 } 24 24 25 public Request(String id, String method, Object[] params) { 26 this.id = id; 27 this.method = method; 28 this.params = params; 29 } 30 31 private Request(String id, String method, boolean async, Object[] params) { 25 public Request(String id, String method, boolean async, Object[] params) { 32 26 this.id = id; 33 27 this.method = method; … … 36 30 } 37 31 38 p rivateRequest(String id, String method, boolean async, Object[] params, boolean multi) {32 public Request(String id, String method, boolean async, Object[] params, boolean multi) { 39 33 this.id = id; 40 34 this.method = method;
Note: See TracChangeset
for help on using the changeset viewer.