CN112732459A - Method and device for uniformly receiving broadcast messages - Google Patents

Method and device for uniformly receiving broadcast messages Download PDF

Info

Publication number
CN112732459A
CN112732459A CN202011635577.1A CN202011635577A CN112732459A CN 112732459 A CN112732459 A CN 112732459A CN 202011635577 A CN202011635577 A CN 202011635577A CN 112732459 A CN112732459 A CN 112732459A
Authority
CN
China
Prior art keywords
event
broadcast
message
receiver
service
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.)
Pending
Application number
CN202011635577.1A
Other languages
Chinese (zh)
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.)
Shanghai Lianshang Network Technology Co Ltd
Original Assignee
Shanghai Lianshang 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 Shanghai Lianshang Network Technology Co Ltd filed Critical Shanghai Lianshang Network Technology Co Ltd
Priority to CN202011635577.1A priority Critical patent/CN112732459A/en
Publication of CN112732459A publication Critical patent/CN112732459A/en
Pending legal-status Critical Current

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/542Event management; Broadcasting; Multicasting; Notifications
    • 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

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Multimedia (AREA)
  • Mobile Radio Communication Systems (AREA)

Abstract

The embodiment of the application discloses a method and equipment for uniformly receiving broadcast messages. One embodiment of the method comprises: receiving a broadcast message of a target application; creating an event message corresponding to the broadcast message; searching the service of the registration event message; the event message is transmitted to a service registering the event message. The embodiment receives the broadcast messages in a unified mode, changes the broadcast messages into event messages and distributes the event messages to each service layer, can achieve unified reception of the broadcast messages, reduces repeated codes and reduces system overhead.

Description

Method and device for uniformly receiving broadcast messages
Technical Field
The embodiment of the application relates to the technical field of computers, in particular to a method and equipment for uniformly receiving broadcast messages.
Background
In general, the broadcast message is transmitted to all IPs related to the identification segment with an IP (Internet Protocol) address with the identification segment being all 1 as a broadcast address. Currently, in order to enable each service in an application to listen to a broadcast message, codes for receiving the broadcast message are generally deployed in each service layer in the application.
Disclosure of Invention
The embodiment of the application provides a method and equipment for uniformly receiving broadcast messages.
In a first aspect, an embodiment of the present application provides a method for uniformly receiving broadcast messages, including: receiving a broadcast message of a target application; creating an event message corresponding to the broadcast message; searching the service of the registration event message; the event message is transmitted to a service registering the event message.
In some embodiments, receiving a broadcast message of a target application comprises: a broadcast message is received with a global broadcast receiver of a target application.
In some embodiments, the global broadcast receiver registers at the start of the target application.
In some embodiments, the service of locating registration event messages includes: finding an event receiver registered on the global broadcast receiver; based on the event receiver, traffic that needs to listen for the event message is determined.
In some embodiments, the event receiver is created by a service.
In some embodiments, sending the event message to a service that registered the event message includes: and traversing the mapping list in the event sender, and calling the searched object method of the event receiver one by one to send the event message.
In some embodiments, the event receiver saves the object methods into a mapping list at creation time.
In some embodiments, the global broadcast receiver is a process-level broadcast receiver, registers the broadcast message to be listened to and exists in the process, and the event sender uniformly forwards the broadcast message using the target application internal event bus.
In a second aspect, an embodiment of the present application provides an apparatus for uniformly receiving broadcast messages, including: a receiving unit configured to receive a broadcast message of a target application; a creating unit configured to create an event message corresponding to the broadcast message; a search unit configured to search for a service of the registration event message; a transmitting unit configured to transmit the event message to a service registering the event message.
In some embodiments, the receiving unit is further configured to: a broadcast message is received with a global broadcast receiver of a target application.
In some embodiments, the global broadcast receiver registers at the start of the target application.
In some embodiments, the lookup unit is further configured to: finding an event receiver registered on the global broadcast receiver; based on the event receiver, traffic that needs to listen for the event message is determined.
In some embodiments, the event receiver is created by a service.
In some embodiments, the sending unit is further configured to: and traversing the mapping list in the event sender, and calling the searched object method of the event receiver one by one to send the event message.
In some embodiments, the event receiver saves the object methods into a mapping list at creation time.
In some embodiments, the global broadcast receiver is a process-level broadcast receiver, registers the broadcast message to be listened to and exists in the process, and the event sender uniformly forwards the broadcast message using the target application internal event bus.
In a third aspect, an embodiment of the present application provides a computer device, including: one or more processors; a storage device having one or more programs stored thereon; when the one or more programs are executed by the one or more processors, the one or more processors are caused to implement the method as described in any implementation of the first aspect.
In a fourth aspect, the present application provides a computer-readable medium, on which a computer program is stored, which, when executed by a processor, implements the method as described in any implementation manner of the first aspect.
According to the method and the device for uniformly receiving the broadcast messages, under the condition that the broadcast messages of the target application are received, event messages corresponding to the broadcast messages are created; then, the service registering the event message is searched and the event message is transmitted to the service registering the event message. The broadcast messages are received in a unified mode, then the broadcast messages are changed into event messages and distributed to all service layers, unified receiving of the broadcast messages can be achieved, repeated codes are reduced, and system overhead is reduced.
Drawings
Other features, objects and advantages of the present application will become more apparent upon reading of the following detailed description of non-limiting embodiments thereof, made with reference to the accompanying drawings in which:
FIG. 1 is a flow diagram of one embodiment of a method for unified reception of broadcast messages according to the present application;
FIG. 2 is a flow diagram of yet another embodiment of a method for unified reception of broadcast messages according to the present application;
FIG. 3 is a diagram of an application scenario for a registration process;
fig. 4 is an application scenario diagram of a broadcast transmission process;
FIG. 5 is a schematic block diagram of a computer system suitable for use in implementing the computer device of an embodiment of the present application.
Detailed Description
The present application will be described in further detail with reference to the following drawings and examples. It is to be understood that the specific embodiments described herein are merely illustrative of the relevant invention and not restrictive of the invention. It should be noted that, for convenience of description, only the portions related to the related invention are shown in the drawings.
It should be noted that the embodiments and features of the embodiments in the present application may be combined with each other without conflict. The present application will be described in detail below with reference to the embodiments with reference to the attached drawings.
FIG. 1 illustrates a flow 100 of one embodiment of a method for unified reception of broadcast messages according to the present application. The method for uniformly receiving the broadcast messages comprises the following steps:
step 101, receiving a broadcast message of a target application.
In the present embodiment, the execution subject of the method of uniformly receiving broadcast messages may receive broadcast messages of a target application.
Typically, the broadcast message is delivered to all the IPs involved in the identification segment with the IP address identifying the segment as all 1's as the broadcast address. Here, the improvement is that the target application installed on the terminal device uniformly receives the broadcast message, and the broadcast message is not directly received by each service layer of the target application. Therefore, the method can be realized by only deploying a set of codes for receiving the broadcast messages in the target application, and the codes for receiving the broadcast messages do not need to be dispersedly deployed in each service layer, so that the codes are more organized, unified management can be realized, the code maintenance is convenient, and unnecessary performance loss caused by code repetition is reduced.
It should be noted that the target application may be any application installed on the terminal device, such as a wireless access point management application.
Step 102, creating an event message corresponding to the broadcast message.
In this embodiment, the execution subject may create an event message corresponding to the broadcast message. That is, the broadcast message is changed to an event message, remaining unchanged in content. Wherein the event message can be distributed identically through the target application internal event bus.
Step 103, searching the service of the registration event message.
In this embodiment, the execution subject may search for a service of the registration event message. Generally, for a service that needs to listen to an event message, it may be registered in advance, so that the execution body determines the service that needs to listen to the event message.
Step 104, sending the event message to the service registering the event message.
In this embodiment, the execution agent may send the event message to a service that registers the event message. The number of services to which the event message is registered may be plural, and the execution body may distribute the event message to the services.
According to the method for uniformly receiving the broadcast messages, under the condition that the broadcast messages of the target application are received, event messages corresponding to the broadcast messages are created; then, the service registering the event message is searched and the event message is transmitted to the service registering the event message. The broadcast messages are received in a unified mode, then the broadcast messages are changed into event messages and distributed to all service layers, unified receiving of the broadcast messages can be achieved, repeated codes are reduced, and system overhead is reduced.
With continued reference to fig. 2, illustrated is a flow 200 that is yet another embodiment of a method of unified reception of broadcast messages in accordance with the present application. The method for uniformly receiving the broadcast messages comprises the following steps:
in step 201, a global broadcast receiver is registered when a target application is started.
In this embodiment, the execution subject of the method of uniformly receiving broadcast messages may register the global broadcast receiver when the target application is started. The global broadcast receiver may be configured to receive broadcast messages in a unified manner, instead of the broadcast receivers of the respective service layers of the target application. The whole target application only has the broadcast receiver, and the unified processing of the broadcast messages can be achieved.
Wherein the global broadcast receiver can be registered at the APP start-up by calling the following code:
AllBroadcastReceiverHelp.INSTANCE.registerReceiver(this)。
an event receiver is created by the service, step 202.
In this embodiment, for traffic in the target application that needs to listen to the event message, it may create an event receiver. Wherein the event receiver may be configured to receive the event message converted from the broadcast message.
Step 203, the object methods are saved to the mapping list when the event receiver is created.
In this embodiment, the event receiver of the service creation may be registered with the global broadcast receiver. Thus, the global broadcast receiver can determine the service that needs to listen to the event message after receiving the broadcast message. Specifically, the executing entity may store the object method of the event receiver in a Map (Map) list of the event sender when the event receiver is created, and may determine the service that needs to listen to the event message by traversing the Map list.
The service registers the event message by calling the following codes during initialization:
v/register event message (create event receiver and register to event sender)
Figure BDA0002878411740000051
Figure BDA0002878411740000061
At step 204, a broadcast message is received using the global broadcast receiver of the target application.
In this embodiment, the execution agent may receive the broadcast message using a global broadcast receiver of the target application.
Typically, the broadcast message is broadcast with an IP address identifying all 1's of the segment, identifying to the host all IP transmissions to which the segment relates. Here, the improvement is that the target application installed on the terminal device uniformly receives the broadcast message, and the broadcast message is not directly received by each service layer of the target application. Therefore, the method can be realized by only deploying a set of codes for receiving the broadcast messages in the target application, and the codes for receiving the broadcast messages do not need to be dispersedly deployed in each service layer, so that the codes are more organized, unified management can be realized, the code maintenance is convenient, and unnecessary performance loss caused by code repetition is reduced.
It should be noted that the target application may be any application installed on the terminal device, such as a wireless access point management application.
The code for the global broadcast receiver to uniformly receive the broadcast message may be as follows:
Figure BDA0002878411740000062
Figure BDA0002878411740000071
step 205, creating an event message corresponding to the broadcast message.
In this embodiment, the execution subject may create an event message corresponding to the broadcast message. That is, the broadcast message is changed to an event message, remaining unchanged in content. Wherein the event message can be distributed identically through the target application internal event bus.
Wherein, the code for transmitting the received broadcast message to become the event message for forwarding is as follows:
Figure BDA0002878411740000072
Figure BDA0002878411740000081
it should be noted that the number of broadcast messages is large, and only names of some broadcast messages are listed here as an example.
At step 206, the event receivers registered with the global broadcast receiver are searched.
In this embodiment, the execution agent may search for an event receiver registered to the global broadcast receiver.
Step 207, based on the event receiver, determines the services that need to listen to the event message.
In this embodiment, the execution subject may determine, based on the event receiver, a service that needs to listen to the event message. The service for creating the event receiver is the service that needs to listen to the event message.
And step 208, traversing the mapping list in the event sender, and calling the searched object methods of the event receiver one by one to send the event message.
In this embodiment, the execution main body may directly send the event message to the service in a callback manner. Specifically, the execution body may traverse a mapping list in the event sender, call the found object method of the event receiver one by one to send the event message, and transfer the parameter.
In some embodiments, the global broadcast receiver may be a process-level broadcast receiver, registering all broadcast messages that need to be listened to, and always existing within a process. The event sender may forward the broadcast message uniformly using the target application internal event bus. In this way, the broadcast messages are all received by one broadcast receiver and then distributed to the service layers using the event bus messages with low overhead.
As can be seen from fig. 2, compared with the corresponding embodiment of fig. 1, the flow 200 of the method for uniformly receiving broadcast messages in the present embodiment highlights a broadcast message receiving step and an event message sending step. Therefore, in the scheme described in this embodiment, a global broadcast receiver is registered when a target application is started, all broadcast messages required by the target application are received, the broadcast messages are changed into event messages, and the event messages are directly sent to corresponding services in a callback manner, so that the whole process of changing the broadcast messages into the event messages is completed once, uniform reception of the broadcast messages can be realized, repeated codes are reduced, and system overhead is reduced.
For ease of understanding, fig. 3 illustrates an application scenario diagram of the registration process. As shown in fig. 3, a global broadcast receiver R is created at the start of APP and registered. In addition, service a creates event listening and registers with global broadcast receiver R. Meanwhile, when the event receiver is created, the object method of the event receiver can be saved in the Map list of the event sender E, and one registration of the event is completed. Subsequently, the object methods can be called one by traversing the Map list, and parameters are transmitted.
Further, fig. 4 shows an application scenario diagram of the broadcast transmission process. As shown in fig. 4, the global broadcast receiver R may receive a broadcast message from an external broadcast. The broadcast message may become a corresponding event message. The event sender E sends an event message to the service a that has registered.
Referring now to FIG. 5, shown is a block diagram of a computer system 500 suitable for use in implementing embodiments of the present application. The computer device shown in fig. 5 is only an example, and should not bring any limitation to the function and the scope of use of the embodiments of the present application.
As shown in fig. 5, the computer system 500 includes a Central Processing Unit (CPU)501 that can perform various appropriate actions and processes according to a program stored in a Read Only Memory (ROM)502 or a program loaded from a storage section 508 into a Random Access Memory (RAM) 503. In the RAM 503, various programs and data necessary for the operation of the system 500 are also stored. The CPU 501, ROM 502, and RAM 503 are connected to each other via a bus 504. An input/output (I/O) interface 505 is also connected to bus 504.
The following components are connected to the I/O interface 505: an input portion 506 including a keyboard, a mouse, and the like; an output portion 507 including a display such as a Cathode Ray Tube (CRT), a Liquid Crystal Display (LCD), and the like, and a speaker; a storage portion 508 including a hard disk and the like; and a communication section 509 including a network interface card such as a LAN card, a modem, or the like. The communication section 509 performs communication processing via a network such as the internet. The driver 510 is also connected to the I/O interface 505 as necessary. A removable medium 511 such as a magnetic disk, an optical disk, a magneto-optical disk, a semiconductor memory, or the like is mounted on the drive 510 as necessary, so that a computer program read out therefrom is mounted into the storage section 508 as necessary.
In particular, according to an embodiment of the present disclosure, the processes described above with reference to the flowcharts may be implemented as computer software programs. For example, embodiments of the present disclosure include a computer program product comprising a computer program embodied on a computer readable medium, the computer program comprising program code for performing the method illustrated in the flow chart. In such an embodiment, the computer program may be downloaded and installed from a network through the communication section 509, and/or installed from the removable medium 511. The computer program performs the above-described functions defined in the method of the present application when executed by the Central Processing Unit (CPU) 501.
It should be noted that the computer readable medium of the present application can be a computer readable signal medium or a computer readable storage medium or any combination of the two. A computer readable storage medium may be, for example, but not limited to, an electronic, magnetic, optical, electromagnetic, infrared, or semiconductor system, apparatus, or device, or any combination of the foregoing. More specific examples of the computer readable storage medium may include, but are not limited to: an electrical connection having one or more wires, a portable computer diskette, a hard disk, a Random Access Memory (RAM), a read-only memory (ROM), an erasable programmable read-only memory (EPROM or flash memory), an optical fiber, a portable compact disc read-only memory (CD-ROM), an optical storage device, a magnetic storage device, or any suitable combination of the foregoing. In the present application, a computer readable storage medium may be any tangible medium that can contain, or store a program for use by or in connection with an instruction execution system, apparatus, or device. In this application, however, a computer readable signal medium may include a propagated data signal with computer readable program code embodied therein, for example, in baseband or as part of a carrier wave. Such a propagated data signal may take many forms, including, but not limited to, electro-magnetic, optical, or any suitable combination thereof. A computer readable signal medium may also be any computer readable medium that is not a computer readable storage medium and that can communicate, propagate, or transport a program for use by or in connection with an instruction execution system, apparatus, or device. Program code embodied on a computer readable medium may be transmitted using any appropriate medium, including but not limited to: wireless, wire, fiber optic cable, RF, etc., or any suitable combination of the foregoing.
Computer program code for carrying out operations for aspects of the present application may be written in any combination of one or more programming languages, including an object oriented programming language such as Java, Smalltalk, C + + or the like and conventional procedural programming languages, such as the "C" programming language or similar programming languages. The program code may execute entirely on the user's computer, partly on the user's computer, as a stand-alone software package, partly on the user's computer and partly on a remote computer or entirely on the remote computer or electronic device. In the case of a remote computer, the remote computer may be connected to the user's computer through any type of network, including a Local Area Network (LAN) or a Wide Area Network (WAN), or the connection may be made to an external computer (for example, through the Internet using an Internet service provider).
The flowchart and block diagrams in the figures illustrate the architecture, functionality, and operation of possible implementations of systems, methods and computer program products according to various embodiments of the present application. In this regard, each block in the flowchart or block diagrams may represent a module, segment, or portion of code, which comprises one or more executable instructions for implementing the specified logical function(s). It should also be noted that, in some alternative implementations, the functions noted in the block may occur out of the order noted in the figures. For example, two blocks shown in succession may, in fact, be executed substantially concurrently, or the blocks may sometimes be executed in the reverse order, depending upon the functionality involved. It will also be noted that each block of the block diagrams and/or flowchart illustration, and combinations of blocks in the block diagrams and/or flowchart illustration, can be implemented by special purpose hardware-based systems which perform the specified functions or acts, or combinations of special purpose hardware and computer instructions.
The units described in the embodiments of the present application may be implemented by software or hardware. The described units may also be provided in a processor, and may be described as: a processor includes a receiving unit, a creating unit, a searching unit, and a transmitting unit. Where the names of the units do not constitute a limitation of the units themselves in this case, for example, a receiving unit may also be described as a "unit receiving a broadcast message of a target application".
As another aspect, the present application also provides a computer-readable medium, which may be contained in the computer device described in the above embodiments; or may exist separately and not be incorporated into the computer device. The computer readable medium carries one or more programs which, when executed by the computing device, cause the computing device to: receiving a broadcast message of a target application; creating an event message corresponding to the broadcast message; searching the service of the registration event message; the event message is transmitted to a service registering the event message.
The above description is only a preferred embodiment of the application and is illustrative of the principles of the technology employed. It will be appreciated by those skilled in the art that the scope of the invention herein disclosed is not limited to the particular combination of features described above, but also encompasses other arrangements formed by any combination of the above features or their equivalents without departing from the spirit of the invention. For example, the above features may be replaced with (but not limited to) features having similar functions disclosed in the present application.

Claims (10)

1. A method for unified reception of broadcast messages, comprising:
receiving a broadcast message of a target application;
creating an event message corresponding to the broadcast message;
searching the service registering the event message;
and sending the event message to a service registered with the event message.
2. The method of claim 1, wherein the receiving a broadcast message of a target application comprises:
receiving the broadcast message with a global broadcast receiver of the target application.
3. The method of claim 2, wherein the global broadcast receiver registers at the target application launch.
4. The method of claim 3, wherein the looking up the service registering the event message comprises:
finding an event receiver registered on the global broadcast receiver;
based on the event receiver, determining the traffic needing to listen to the event message.
5. The method of claim 4, wherein the event receiver is created by a service.
6. The method of claim 5, wherein the sending the event message to a service that registered the event message comprises:
and traversing a mapping list in the event sender, and calling the searched object method of the event receiver one by one to send the event message.
7. The method of claim 6, wherein the event receiver saves object methods into the mapping list at creation time.
8. The method of claim 7, wherein the global broadcast receiver is a process-level broadcast receiver, registers the broadcast message to be listened to and exists all the time in a process, and the event transmitter uniformly forwards the broadcast message using the target application internal event bus.
9. A computer device, comprising:
one or more processors;
a storage device on which one or more programs are stored;
when executed by one or more processors, cause the one or more processors to implement the method of any one of claims 1-8.
10. A computer-readable storage medium, on which a computer program is stored which, when being executed by a processor, carries out the method according to any one of claims 1-8.
CN202011635577.1A 2020-12-31 2020-12-31 Method and device for uniformly receiving broadcast messages Pending CN112732459A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202011635577.1A CN112732459A (en) 2020-12-31 2020-12-31 Method and device for uniformly receiving broadcast messages

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202011635577.1A CN112732459A (en) 2020-12-31 2020-12-31 Method and device for uniformly receiving broadcast messages

Publications (1)

Publication Number Publication Date
CN112732459A true CN112732459A (en) 2021-04-30

Family

ID=75608605

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202011635577.1A Pending CN112732459A (en) 2020-12-31 2020-12-31 Method and device for uniformly receiving broadcast messages

Country Status (1)

Country Link
CN (1) CN112732459A (en)

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114064330A (en) * 2022-01-12 2022-02-18 广东睿江云计算股份有限公司 Hook callback broadcast forwarding method and system based on OpenVidu
CN114500535A (en) * 2022-01-21 2022-05-13 北京百度网讯科技有限公司 Message processing method and device, electronic equipment and storage medium
CN115296943A (en) * 2022-07-18 2022-11-04 杭州趣链科技有限公司 Message broadcasting method, device, server and storage medium

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN114064330A (en) * 2022-01-12 2022-02-18 广东睿江云计算股份有限公司 Hook callback broadcast forwarding method and system based on OpenVidu
CN114064330B (en) * 2022-01-12 2022-05-13 广东睿江云计算股份有限公司 Hook callback broadcast forwarding method and system based on OpenVidu
CN114500535A (en) * 2022-01-21 2022-05-13 北京百度网讯科技有限公司 Message processing method and device, electronic equipment and storage medium
CN115296943A (en) * 2022-07-18 2022-11-04 杭州趣链科技有限公司 Message broadcasting method, device, server and storage medium
CN115296943B (en) * 2022-07-18 2024-04-16 杭州趣链科技有限公司 Message broadcasting method, device, server and storage medium

Similar Documents

Publication Publication Date Title
CN112732459A (en) Method and device for uniformly receiving broadcast messages
CN111432001B (en) Method, apparatus, electronic device and computer readable medium for jumping scenes
WO2017079866A1 (en) Application installation package acquisition method, information broadcast method, mobile device and base station
CN111209306A (en) Business logic judgment method and device, electronic equipment and storage medium
CN113760536A (en) Data caching method and device, electronic equipment and computer readable medium
CN114938395A (en) Service response method, device, equipment and storage medium
CN113162836B (en) Virtual local area network communication method and device, cloud server, medium and electronic equipment
CN112748962B (en) Application loading method, device, electronic equipment and computer readable medium
CN112230969B (en) Method and equipment for formatting user space storage area in firmware upgrading process
CN112306685A (en) Task isolation method and device, electronic equipment and computer readable medium
CN112948138A (en) Method and device for processing message
CN113553206B (en) Data event execution method and device, electronic equipment and computer readable medium
CN111866109B (en) Message processing method, device, equipment and storage medium
CN112732457B (en) Image transmission method, image transmission device, electronic equipment and computer readable medium
CN113986995A (en) Request distribution method and device, storage medium and electronic equipment
CN111460020B (en) Method, device, electronic equipment and medium for resolving message
CN109309583B (en) Information acquisition method and device based on distributed system, electronic equipment and medium
CN113765972A (en) Data request response method, device, system, server and storage medium
CN113988992A (en) Order information sending method and device, electronic equipment and computer readable medium
CN109669679B (en) Service detection and processing method and device and electronic equipment
CN114691553A (en) Method and device for accessing accessory device
CN113742617A (en) Cache updating method and device
CN114745153B (en) Link tracking method combining WCF and log4net
CN115118727B (en) Data transmission method, device, equipment and storage medium of distributed computing architecture
WO2023131109A1 (en) Method and apparatus for registering broadcast

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