forked from mpusher/mpush
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
增加PushCenter消息流转时间线, 方便监控消息的各个生命周期的耗时PushClient -> GatewayClient -> G…
…atewayServer -> PushCenter -> ConnServer -> Client
- Loading branch information
夜色
committed
Dec 29, 2016
1 parent
e7e6c8c
commit d0eb910
Showing
13 changed files
with
340 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
mpush-common/src/main/java/com/mpush/common/push/GatewayPushResult.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
* (C) Copyright 2015-2016 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* Contributors: | ||
* [email protected] (夜色) | ||
*/ | ||
|
||
package com.mpush.common.push; | ||
|
||
import com.mpush.common.message.gateway.GatewayPushMessage; | ||
import com.mpush.tools.Jsons; | ||
|
||
/** | ||
* Created by ohun on 2016/12/29. | ||
* | ||
* @author [email protected] (夜色) | ||
*/ | ||
public final class GatewayPushResult { | ||
public String userId; | ||
public Integer clientType; | ||
public Object[] timePoints; | ||
|
||
public GatewayPushResult(String userId, Integer clientType, Object[] timePoints) { | ||
this.userId = userId; | ||
this.timePoints = timePoints; | ||
if (clientType > 0) this.clientType = clientType; | ||
} | ||
|
||
public static String toJson(GatewayPushMessage message, Object[] timePoints) { | ||
return Jsons.toJson(new GatewayPushResult(message.userId, message.clientType, timePoints)); | ||
} | ||
|
||
public static GatewayPushResult fromJson(String json) { | ||
if (json == null) return null; | ||
return Jsons.fromJson(json, GatewayPushResult.class); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.