CN107193674B - Method and device for processing online push message - Google Patents

Method and device for processing online push message Download PDF

Info

Publication number
CN107193674B
CN107193674B CN201710518113.4A CN201710518113A CN107193674B CN 107193674 B CN107193674 B CN 107193674B CN 201710518113 A CN201710518113 A CN 201710518113A CN 107193674 B CN107193674 B CN 107193674B
Authority
CN
China
Prior art keywords
push message
online push
online
processing
message
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Active
Application number
CN201710518113.4A
Other languages
Chinese (zh)
Other versions
CN107193674A (en
Inventor
尹成
张文明
陈少杰
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Xiamen Mutual Technology Co ltd
Original Assignee
Wuhan Douyu Network Technology Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Wuhan Douyu Network Technology Co Ltd filed Critical Wuhan Douyu Network Technology Co Ltd
Priority to CN201710518113.4A priority Critical patent/CN107193674B/en
Publication of CN107193674A publication Critical patent/CN107193674A/en
Application granted granted Critical
Publication of CN107193674B publication Critical patent/CN107193674B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/54Interprogram communication
    • G06F9/546Message passing systems or structures, e.g. queues
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/90Details of database functions independent of the retrieved data types
    • G06F16/95Retrieval from the web
    • G06F16/953Querying, e.g. by the use of web search engines
    • G06F16/9535Search customisation based on user profiles and personalisation
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L67/00Network arrangements or protocols for supporting network services or applications
    • H04L67/50Network services
    • H04L67/55Push-based network services

Abstract

The invention provides a method and a device for processing an online push message, and relates to the field of mobile internet. The method comprises the following steps: s1, writing the online push message received by the first process into an SQLite database, and obtaining a query handle corresponding to the online push message; s2, transferring the query handle from the first process to a second process; s3, acquiring the online push message from the SQLite database based on the query handle received by the second process, and processing the online push message. By adopting the query handle to replace the online push message to be transmitted between the background process and the main process, the query handle cannot be lost when being transmitted between the background process and the main process, so that the problem of message loss when the online push message is transmitted between the background process and the main process is avoided, the success rate of online push is improved, and the online push message is more efficiently and timely pushed.

Description

Method and device for processing online push message
Technical Field
The embodiment of the invention relates to the field of mobile internet, in particular to a method and a device for processing an online push message.
Background
In both android and iOS environments, the push technology is widely adopted due to timeliness and accuracy, and for some real-time media or video applications (apps), it is very important to have efficient push message receiving capability. In the push process, a server (push server) sends out a push message, a client (App) is responsible for receiving and processing (consuming) the push message, and the push message is generally divided into three types: online push messages, offline push messages, and pass-through messages. Whether the pushing is efficient and timely depends on whether the processing of the pushing message is efficient and timely after the client receives the pushing message sent by the pushing server. With the rapid development of the live broadcast industry, any type of live broadcast type App is expected to improve the activity of the App, but a user cannot hang the App in the foreground for a long time to run. Therefore, during the foreground operation period, in order to ensure that the user receives the push message in time, the App needs to have efficient receiving and consuming capability for the online push message.
At present, on an android platform, processing of an online push message by an App mainly adopts a processing mode of popping a notification first and then routing the message. The specific treatment process comprises the following steps: and the first process of the App is responsible for receiving the online push message and creating a notification, when the notification is clicked, the online push message is routed to the second process of the App in a broadcasting mode, and then the second process is responsible for consuming the online push message. The first process may be a background process, and the second process may be a main process.
However, when the background process of the App transmits the online push message to the main process in a broadcast manner, some broadcasts are intercepted due to the limitation of different versions of the android system on the broadcasts, so that part of the online push message cannot be routed to the main process by the background process. That is, in the above processing manner, there is a problem that a message is lost when the online push message is transmitted between the background process and the main process, thereby causing a failure in pushing the online push message.
Disclosure of Invention
Embodiments of the present invention provide a method and an apparatus for processing an online push message, which overcome the above problems or at least partially solve the above problems.
On one hand, the embodiment of the invention provides a method for processing an online push message, which comprises the following steps:
s1, writing the online push message received by the first process into an SQLite database, and obtaining a query handle corresponding to the online push message;
s2, transferring the query handle from the first process to a second process;
s3, acquiring the online push message from the SQLite database based on the query handle received by the second process, and processing the online push message.
Wherein, before step S1, the method further includes:
setting the service priority of the push service in the first process to be the highest level.
Wherein, step S2 specifically includes:
if the second process is judged to be in the foreground, creating a first notification based on the online push message, wherein the query handle is encapsulated in the first notification;
passing the query handle from the first process to a second process when the first notification is clicked.
Wherein, step S2 specifically includes:
if the second process is judged to be in the background, a message Intent containing the query handle is created;
utilizing the message Intent to start an Activity component in the second process;
and extracting the query handle from the message Intent by using the Activity component in the second process.
Wherein, step S3 specifically includes:
and acquiring the online push message in the SQLite database based on the query handle received by the second process, and sending the online push message to a UI thread in the second process to complete the processing of the online push message.
In step S3, the processing the online push message further includes:
and if the second process is judged to be in the foreground, the on-line push message is analyzed by the UI thread, and the processing of the on-line push message is completed.
In step S3, the processing the online push message further includes:
and if the second process is judged to be in the background, establishing a second notification by using the UI thread, and when the second notification is clicked, analyzing the online push message by using the UI thread to complete the processing of the online push message.
In another aspect, an embodiment of the present invention provides an apparatus for processing an online push message, where the apparatus includes:
the writing module is used for writing the online push message received by the first process into the SQLite database and obtaining a query handle corresponding to the online push message;
a transfer module to transfer the query handle from the first process to a second process;
and the processing module is used for acquiring the online push message from the SQLite database based on the query handle received by the second process and processing the online push message.
In yet another aspect, the present invention provides a computer program product comprising a computer program stored on a non-transitory computer readable storage medium, the computer program comprising program instructions which, when executed by a computer, cause the computer to perform the processing method described above.
In yet another aspect, the present invention provides a non-transitory computer-readable storage medium storing computer instructions that cause the computer to perform the above-described processing method.
According to the method and the device for processing the online push message, the online push message is written into the SQLite database, the query handle is adopted to replace the online push message to be transmitted between the background process and the main process, and the main process queries the corresponding online push message in the SQLite database according to the obtained query handle and then analyzes and consumes the online push message, so that the processing of the online push message is completed. The query handle can not be lost when being transmitted between the background process and the main process, so that the problem of message loss when the online push message is transmitted between the background process and the main process is solved, the success rate of online push is improved, and the online push message is pushed more efficiently and timely.
Drawings
Fig. 1 is a flowchart of a method for processing an online push message according to an embodiment of the present invention;
fig. 2 is a block diagram of a device for processing an online push message according to an embodiment of the present invention.
Detailed Description
In order to make the objects, technical solutions and advantages of the embodiments of the present invention clearer, the technical solutions in the embodiments of the present invention will be clearly described below with reference to the drawings in the embodiments of the present invention, and it is obvious that the described embodiments are some embodiments, but not all embodiments, of the present invention. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present invention.
Before describing in detail the aspects of the embodiments of the present invention, the following terms are explained in order to facilitate better understanding of the aspects of the embodiments of the present invention
Push (Push): the method refers to a new technology for reducing information overload by periodically transmitting information required by a user on the internet through a certain technical standard or protocol.
Socket: two programs on the network realize data exchange through a bidirectional communication connection, one end of the connection is called a Socket, the Socket is essentially A Programming Interface (API), and for encapsulation of TCP/IP, the TCP/IP also provides an interface which can be used by programmers for network development, and the interface is the Socket programming interface.
Long Connection (Persistent Connection): it means that a plurality of data packets can be continuously transmitted on one connection, and if no data packet is transmitted during the connection holding period, a link detection packet needs to be transmitted by two parties.
Process (Process): the program in the computer is related to one running activity on a certain data set, and is a basic unit for resource allocation and scheduling of the system, and the process is also a basic execution entity of the program.
Main Process (Main Process): the process which is directly interacted with the user and is visible in the foreground is pointed, the priority is higher, and the process is not easy to kill.
Background Process (B-Process): the process runs after the user process in a silent mode for a long time and the user can not interact directly, and the priority is low and the process is easy to kill;
thread (Thread): sometimes referred to as Lightweight Process (LWP), is the smallest unit of program execution flow. A standard thread consists of a thread ID, a current instruction Pointer (PC), a register set, and a stack.
Main Thread (Main Thread): the method is also called as a UI thread, and refers to a main thread of an application runtime in an android system, and the main thread is responsible for distributing events (including drawing events) to a UI component, and the thread cannot perform time-consuming operations (network requests and database operations), otherwise ANR exceptions are easily caused.
Service (Service): one of the four major components of the android system, the Service is a system component which does not allow the user to directly interact with the Service, and the Service runs in the background for a long time, for example, a music player plays music and is in Service.
Intent service (intservice): one special type of service, the intent service, is typically used to perform time consuming operations, where a thread pool is maintained and the service book automatically stops servicing after the time consuming operations have been performed.
Intent: the method can be used not only between application programs, but also for interaction between an Activity component and a Service component inside the application programs, and the Intent can be understood as a medium for communication between different components to specially provide related information for the components to call each other.
A Handler: and mainly receiving data sent by the sub-thread, and updating the UI by matching the data with the main thread.
Online Push (Online Push, ON-Push): when the application process is in an active state, the application background push service process and the push server maintain messages received in a long connection process.
Notification (Notification): one type of message presentation for android systems is typically presented in a panel format with title and keyword content at the top notification bar.
Online Notification (ON-Notification): one type of notification, which is created and exposed by the application itself.
Activity component: one of the four major components of the android system is a basic component unit which is directly interacted with a user, and data communication in a process or between processes can be achieved.
Broadcast (Broadcast): one of the four major components of the android system, broadcast is generally used to perform communication between threads inside application processes, or between different processes.
Content Provider component: one of the four major components of the android system is generally used for data transfer across processes.
Fig. 1 is a processing method for an online push message according to an embodiment of the present invention, as shown in fig. 1, the method includes: s1, writing the online push message received by the first process into an SQLite database, and obtaining a query handle corresponding to the online push message; s2, transferring the query handle from the first process to a second process; s3, acquiring the online push message from the SQLite database based on the query handle received by the second process, and processing the online push message.
The first Process may be a background Process, which is used as a Push service Process (Push Process) and is responsible for receiving and routing a message from a Push server. The second Process may be responsible for the processing of messages for a Main Process (Main Process).
Specifically, the background process starts a Push Service (Push Service), and receives an online Push message pushed by the Push server. After receiving the online push message, the background process converts the online push message into a JSON (JSON object tagging) format, writes the online push message into an SQLite database by using an SQLite, and obtains a query handle corresponding to the online push message and fed back by the SQLite. In order to ensure the high efficiency and freshness of online message pushing, the SQLite database is stored in an application cache directory, and the SQLite database is emptied after the cache directory is cleared. And the background process transmits the query handle to the main process, and the main process queries according to the query handle to obtain the corresponding online push message. The main process analyzes and consumes the received online push message to complete the processing of the online push message.
According to the method for processing the online push message in the android system, provided by the embodiment of the invention, the online push message is written into the SQLite database, the query handle is adopted to replace the online push message to be transmitted between the background process and the main process, and the main process queries the corresponding online push message in the SQLite database according to the obtained query handle and then analyzes and consumes the online push message, so that the processing of the online push message is completed. The query handle can not be lost when being transmitted between the background process and the main process, so that the problem of message loss when the online push message is directly transmitted between the background process and the main process is solved, the success rate of online push is improved, and the online push message is more efficiently and timely pushed.
In the above embodiment, before step S1, the method further includes:
setting the service priority of the push service in the first process to be the highest level.
Specifically, the push service runs in the first process for a long time, the service priority of the push service is set to be the highest level, meanwhile, the push service establishes long connection with the push server by using a Socket communication means, and the first process preferentially starts the push service when the application is initialized, so that the timeliness of message delivery of the push server is ensured.
In the above embodiment, step S2 specifically includes:
if the second process is judged to be in the foreground, creating a first notification based on the online push message, and encapsulating the query handle in the first notification;
passing the query handle from the first process to a second process when the first notification is clicked.
Specifically, after the first process finishes writing the online push message into the SQLite database, whether the second process is in the foreground is judged, and the fact that the second process is in the foreground indicates that an interface corresponding to the App of the second process is visible on the terminal. And if the first process judges that the second process is in the foreground, the first process creates a first notification according to the title and the content of the online push message, encapsulates the query handle in the first notification, and finally displays the first notification in a notification bar. And when the user clicks the first notification, the second process acquires the query handle in the first notification and stores the query handle in the memory at the application level.
In the above embodiment, step S2 specifically includes:
if the second process is judged to be in the background, a message Intent containing the query handle is created;
utilizing the message Intent to start an Activity component in the second process;
and extracting the query handle from the message Intent by using the Activity component in the second process.
Specifically, after the first process completes writing the online push message into the SQL database, it is determined whether the second process is in the foreground. And if the first process judges that the second process is in the background, the second process creates a message Intent, and the message Intent contains the query handle. And the second process starts the transparent Activity component in the second process through the message Intent, then the transparent Activity component in the second process receives the message Intent and extracts the query handle in the message Intent, the second process stores the query handle in the memory at the application level, and finally the transparent Activity component in the second process is rapidly destroyed after the work is completed.
In the above embodiment, step S3 specifically includes:
and acquiring the online push message in the SQLite database based on the query handle received by the second process, and sending the online push message to a UI thread in the second process to complete the processing of the online push message.
Specifically, after the second process stores the query handle to the application level memory, the second process starts an intention service. And then, the intention service uses a Content Provider component to query the corresponding online push message in the cache directory according to the query handle. And finally, the intention service sends the online push message to a UI thread in a second process by using a Handler. And after the UI thread successfully receives the online push message, the intention service immediately suspends the operation and waits for the arrival of the next online push message.
In the above embodiment, the processing the online push message in step S3 further includes:
and if the second process is judged to be in the foreground, the on-line push message is analyzed by the UI thread, and the processing of the on-line push message is completed.
Specifically, when the second process is in the foreground, the UI thread directly parses the received online push message and extracts the valid field of the online push message, thereby completing the processing of the online push message.
In the above embodiment, the processing the online push message in step S3 further includes:
and if the second process is judged to be in the background, establishing a second notification by using the UI thread, and when the second notification is clicked, analyzing the online push message by using the UI thread to complete the processing of the online push message.
Specifically, when the second process is in the background, the UI creates a second notification according to the title and the content of the received online push message, and displays the second notification in a notification bar. And when the user clicks the second notification, the UI thread analyzes the online push message in an internal broadcast mode to complete the processing of the online push message. The process can enable the second process to be switched from the background to the foreground, and the activity rate of the App is improved.
Fig. 2 is a block diagram of a structure of an apparatus for processing an online push message according to an embodiment of the present invention, and as shown in fig. 2, the apparatus includes: a write module 1, a transfer module 2 and a processing module 3. Wherein:
the writing module 1 is configured to write an online push message received by a first process into an SQLite database, and obtain a query handle corresponding to the online push message. The transfer module 2 is configured to transfer the query handle from the first process to a second process. The processing module 3 acquires the online push message from the SQLite database based on the query handle received by the second process, and processes the online push message.
The first Process may be a background Process, which is used as a Push service Process (Push Process) and is responsible for receiving and routing a message from a Push server. The second Process may be responsible for the processing of messages for a Main Process (Main Process).
Specifically, the background process starts a Push Service (Push Service), and receives an online Push message pushed by the Push server. After receiving the online push message, the background process converts the online push message into a JSON (JSON object tagging) format, writes the online push message into an SQLite database by using an SQLite, and obtains a query handle corresponding to the online push message and fed back by the SQLite. In order to ensure the high efficiency and freshness of online message pushing, the SQLite database is stored in an application cache directory, and the SQLite database is emptied after the cache directory is cleared. And the background process transmits the query handle to the main process, and the main process queries according to the query handle to obtain the corresponding online push message. The main process analyzes and consumes the received online push message to complete the processing of the online push message.
According to the processing device for the online push message in the android system, the online push message is written into the SQLite database through the writing module, the transmission module adopts the query handle to replace the online push message to transmit between the background process and the main process, the processing module queries the corresponding online push message in the SQLite database according to the obtained query handle, and then analyzes and consumes the online push message, so that the processing of the online push message is completed. The query handle can not be lost when being transmitted between the background process and the main process, so that the problem of message loss when the online push message is transmitted between the background process and the main process is solved, the success rate of online push is improved, and the online push message is pushed more efficiently and timely.
Embodiments of the present invention provide a computer program product comprising a computer program stored on a non-transitory computer-readable storage medium, the computer program comprising program instructions, which when executed by a computer, enable the computer to perform the methods provided by the above-mentioned method embodiments, for example, including: writing an online push message received by a first process into an SQLite database, and obtaining a query handle corresponding to the online push message; passing the query handle from the first process to a second process; and acquiring the online push message in the SQLite database based on the query handle received by the second process, and processing the online push message.
Embodiments of the present invention provide a non-transitory computer-readable storage medium, which stores computer instructions, where the computer instructions cause the computer to perform the methods provided by the above method embodiments, for example, the methods include: writing an online push message received by a first process into an SQLite database, and obtaining a query handle corresponding to the online push message; passing the query handle from the first process to a second process; and acquiring the online push message in the SQLite database based on the query handle received by the second process, and processing the online push message.
Finally, it should be noted that: the above examples are only intended to illustrate the technical solution of the present invention, but not to limit it; although the present invention has been described in detail with reference to the foregoing embodiments, it will be understood by those of ordinary skill in the art that: the technical solutions described in the foregoing embodiments may still be modified, or some technical features may be equivalently replaced; and such modifications or substitutions do not depart from the spirit and scope of the corresponding technical solutions of the embodiments of the present invention.

Claims (8)

1. A method for processing an online push message, the method comprising:
s1, writing the online push message received by the first process into an SQLite database, and obtaining a query handle corresponding to the online push message;
s2, transferring the query handle from the first process to a second process;
s3, acquiring the online push message in the SQLite database based on the query handle received by the second process, and processing the online push message;
step S2 specifically includes:
if the second process is judged to be in the foreground, creating a first notification based on the online push message, wherein the query handle is encapsulated in the first notification;
passing the query handle from the first process to a second process when the first notification is clicked.
2. The method according to claim 1, further comprising, before step S1:
setting the service priority of the push service in the first process to be the highest level.
3. The method according to claim 1, wherein step S2 specifically includes:
if the second process is judged to be in the background, a message Intent containing the query handle is created;
utilizing the message Intent to start an Activity component in the second process;
and extracting the query handle from the message Intent by using the Activity component in the second process.
4. The method according to claim 1, wherein step S3 specifically includes:
and acquiring the online push message in the SQLite database based on the query handle received by the second process, and sending the online push message to a UI thread in the second process to complete the processing of the online push message.
5. The method according to claim 4, wherein the processing the online push message in step S3 further comprises:
and if the second process is judged to be in the foreground, the on-line push message is analyzed by the UI thread, and the processing of the on-line push message is completed.
6. The method according to claim 4, wherein the processing the online push message in step S3 further comprises:
and if the second process is judged to be in the background, establishing a second notification by using the UI thread, and when the second notification is clicked, analyzing the online push message by using the UI thread to complete the processing of the online push message.
7. An apparatus for processing an online push message, the apparatus comprising:
the writing module is used for writing the online push message received by the first process into the SQLite database and obtaining a query handle corresponding to the online push message;
a transfer module to transfer the query handle from the first process to a second process;
the processing module is used for acquiring the online push message from the SQLite database based on the query handle received by the second process and processing the online push message;
the transfer module is specifically configured to:
if the second process is judged to be in the foreground, creating a first notification based on the online push message, wherein the query handle is encapsulated in the first notification;
passing the query handle from the first process to a second process when the first notification is clicked.
8. A non-transitory computer-readable storage medium storing computer instructions that cause a computer to perform the method of any one of claims 1 to 6.
CN201710518113.4A 2017-06-29 2017-06-29 Method and device for processing online push message Active CN107193674B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201710518113.4A CN107193674B (en) 2017-06-29 2017-06-29 Method and device for processing online push message

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201710518113.4A CN107193674B (en) 2017-06-29 2017-06-29 Method and device for processing online push message

Publications (2)

Publication Number Publication Date
CN107193674A CN107193674A (en) 2017-09-22
CN107193674B true CN107193674B (en) 2020-01-03

Family

ID=59880163

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201710518113.4A Active CN107193674B (en) 2017-06-29 2017-06-29 Method and device for processing online push message

Country Status (1)

Country Link
CN (1) CN107193674B (en)

Families Citing this family (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN107741884B (en) * 2017-10-09 2020-10-27 武汉斗鱼网络科技有限公司 Method and device for realizing message pushing by hierarchical state machine
CN108766550B (en) * 2018-03-22 2022-06-28 青岛海信医疗设备股份有限公司 Medical equipment terminal information saving method, storage medium and medical equipment terminal
CN109150951B (en) * 2018-06-11 2020-05-29 阿里巴巴集团控股有限公司 Method and device for starting Activity of Android system
CN112068968B (en) * 2019-06-11 2022-10-18 成都鼎桥通信技术有限公司 Service access method and device for dual-system terminal
CN110417915B (en) * 2019-08-22 2021-12-31 北京大米科技有限公司 Push message transmission method and device, storage medium and electronic equipment
CN112445628B (en) * 2019-09-03 2023-10-24 腾讯科技(深圳)有限公司 Inter-process resource sharing method and device and electronic equipment

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103684988A (en) * 2013-11-22 2014-03-26 深圳市迈桥科技有限公司 Cross-mobile-terminal message pushing method and device
CN104301203A (en) * 2014-09-10 2015-01-21 腾讯科技(深圳)有限公司 Message pushing method and equipment
CN104796322A (en) * 2015-03-25 2015-07-22 腾讯科技(深圳)有限公司 Message processing method and equipment
CN105740418A (en) * 2016-01-29 2016-07-06 杭州亿方云网络科技有限公司 File monitoring and message pushing based real-time synchronization system

Family Cites Families (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103514123B (en) * 2012-12-26 2016-08-03 Tcl数码科技(深圳)有限责任公司 The recognition methods of a kind of USB equipment connection port and system
CN105337762A (en) * 2015-09-28 2016-02-17 浪潮(北京)电子信息产业有限公司 File sharing method supporting automatic failover
US10187675B2 (en) * 2015-10-12 2019-01-22 The Nielsen Company (Us), Llc Methods and apparatus to identify co-relationships between media using social media
CN106603540A (en) * 2016-12-21 2017-04-26 北京天融信网络安全技术有限公司 Method and device for monitoring instant communication information

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103684988A (en) * 2013-11-22 2014-03-26 深圳市迈桥科技有限公司 Cross-mobile-terminal message pushing method and device
CN104301203A (en) * 2014-09-10 2015-01-21 腾讯科技(深圳)有限公司 Message pushing method and equipment
CN104796322A (en) * 2015-03-25 2015-07-22 腾讯科技(深圳)有限公司 Message processing method and equipment
CN105740418A (en) * 2016-01-29 2016-07-06 杭州亿方云网络科技有限公司 File monitoring and message pushing based real-time synchronization system

Also Published As

Publication number Publication date
CN107193674A (en) 2017-09-22

Similar Documents

Publication Publication Date Title
CN107193674B (en) Method and device for processing online push message
CN106161537B (en) Method, device and system for processing remote procedure call and electronic equipment
US9699276B2 (en) Data distribution method and system and data receiving apparatus
CN110300050A (en) Information push method, device, computer equipment and storage medium
CN110058987B (en) Method, apparatus, and computer readable medium for tracking a computing system
CN110677277B (en) Data processing method, device, server and computer readable storage medium
US20190173960A1 (en) Method, device and computer program product for protocol selection
EP2492860A1 (en) Forwarding data from server to device
WO2020063040A1 (en) Processor core configuration method and apparatus, terminal, and storage medium
WO2019201340A1 (en) Processor core scheduling method and apparatus, terminal, and storage medium
CN109634738A (en) Asynchronous processing method, server, storage medium and device based on micro services
US10489179B1 (en) Virtual machine instance data aggregation based on work definition metadata
US20150296014A1 (en) Picture download method and apparatus
US9614900B1 (en) Multi-process architecture for a split browser
CN113285931A (en) Streaming media transmission method, streaming media server and streaming media system
CN112995347B (en) Method, device, equipment and storage medium for realizing end-to-end real-time data display
CN111694744B (en) Test development method based on monkey source code
CN112073488A (en) Method and device for processing request
CN113037834A (en) Web page state updating method and device based on distributed instant push
CN113760242A (en) Data processing method, device, server and medium
CN112689020A (en) Message transmission method, message middleware, electronic equipment and storage medium
JP2017188131A (en) Notification method and notification server for performing push notification to portable terminal based on wipe
US8572569B2 (en) Modified implementation of a debugger wire protocol and command packet
CN108270803B (en) Method and system for realizing transmission of network file and desktop application through webpage technology
CN113722115A (en) Method, device, equipment and computer readable medium for calling interface

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant
TR01 Transfer of patent right
TR01 Transfer of patent right

Effective date of registration: 20230410

Address after: 510000 2414-2416 of the main building 371, five mountain road, Tianhe District, Guangzhou, Guangdong.

Patentee after: GUANGDONG GAOHANG INTELLECTUAL PROPERTY OPERATION Co.,Ltd.

Address before: 430000 East Lake Development Zone, Wuhan City, Hubei Province, No. 1 Software Park East Road 4.1 Phase B1 Building 11 Building

Patentee before: WUHAN DOUYU NETWORK TECHNOLOGY Co.,Ltd.

Effective date of registration: 20230410

Address after: Room 902-3, No. 339 Chengyi Street, Software Park Phase III, Xiamen Torch High tech Zone, Xiamen, Fujian Province, 361000

Patentee after: Wenliang Technology (Xiamen) Co.,Ltd.

Address before: 510000 2414-2416 of the main building 371, five mountain road, Tianhe District, Guangzhou, Guangdong.

Patentee before: GUANGDONG GAOHANG INTELLECTUAL PROPERTY OPERATION Co.,Ltd.

TR01 Transfer of patent right
TR01 Transfer of patent right

Effective date of registration: 20231115

Address after: Room 902-7, No. 339 Chengyi Street, Software Park Phase III, Torch High tech Zone, Xiamen City, Fujian Province, 361000

Patentee after: Xiamen Mutual Technology Co.,Ltd.

Address before: Room 902-3, No. 339 Chengyi Street, Software Park Phase III, Xiamen Torch High tech Zone, Xiamen, Fujian Province, 361000

Patentee before: Wenliang Technology (Xiamen) Co.,Ltd.