01: /**
02: * Licensed to the Apache Software Foundation (ASF) under one
03: * or more contributor license agreements. See the NOTICE file
04: * distributed with this work for additional information
05: * regarding copyright ownership. The ASF licenses this file
06: * to you under the Apache License, Version 2.0 (the
07: * "License"); you may not use this file except in compliance
08: * with the License. You may obtain a copy of the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing,
13: * software distributed under the License is distributed on an
14: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15: * KIND, either express or implied. See the License for the
16: * specific language governing permissions and limitations
17: * under the License.
18: */package org.apache.cxf.management.counters;
19:
20: import org.apache.cxf.message.Exchange;
21:
22: /* recoder the message actually handle begin and end time */
23: public class MessageHandlingTimeRecorder {
24: private Exchange exchange;
25: private long beginTime;
26: private long endTime;
27: private boolean oneWay;
28:
29: public MessageHandlingTimeRecorder(Exchange ex) {
30: exchange = ex;
31: exchange.put(MessageHandlingTimeRecorder.class, this );
32: }
33:
34: public boolean isOneWay() {
35: return oneWay;
36: }
37:
38: public void setOneWay(boolean ow) {
39: oneWay = ow;
40: }
41:
42: public Exchange getHandleExchange() {
43: return exchange;
44: }
45:
46: public void beginHandling() {
47: beginTime = System.nanoTime() / 1000;
48: }
49:
50: public void endHandling() {
51: endTime = System.nanoTime() / 1000;
52: }
53:
54: public long getEndTime() {
55: return endTime;
56: }
57:
58: public long getHandlingTime() {
59: return endTime - beginTime;
60: }
61:
62: }
|