This method sends an ordered request to the replicas, and returns the related reply. If the servers take more than invokeTimeout seconds the method returns null. This method is thread-safe. @param request to be sent @return The reply from the replicas related to request
(byte[] request)
| 152 | * @return The reply from the replicas related to request |
| 153 | */ |
| 154 | public byte[] invokeOrdered(byte[] request) { |
| 155 | return invoke(request, TOMMessageType.ORDERED_REQUEST); |
| 156 | } |
| 157 | |
| 158 | public byte[] invokeOrderedHashed(byte[] request) { |
| 159 | return invoke(request, TOMMessageType.ORDERED_HASHED_REQUEST); |