Sponsored Content
The Lounge What is on Your Mind? Congrats to RudiC - 3000 Thanks! Post 302988548 by Don Cragun on Wednesday 28th of December 2016 02:39:52 AM
Old 12-28-2016
Hi RudiC & drl,
You might see something like "Replying to Thread ..." if you are looking at the "Current activity" section close to the top of a member's home page, but we don't see anything like that when composing a response to a post in a thread nor when looking at the unix.com "Home" page nor "New Topics" page. (Or is there some other spot that contains this information that I haven't noticed yet?)

Before posting a response, I usually hit the "Go Advanced" button and I hit "Preview Post" before submitting a response and then I check to see if any new replies have appeared in the "Topic Review" section just before I hit the "Submit Reply" button. Even doing that, it sometimes happens that I submit a reply seconds before or after someone else (most frequently Chubler_XL, bakunin, RavinderSingh13, RudiC, Scrutinizer, or jim mcnamara).

But, since I often start responding to a post and get distracted by a phone call, a meeting, or a meal; I don't want the fact that I have started drafting a response to a post to keep anyone else from trying to help that thread's submitter before I get back to that issue.
This User Gave Thanks to Don Cragun For This Post:
 

7 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

Congrats

I guess this is the most appropriate section for this post... Just wanted to give a big congrats to LivinFree for passing the 1000 post mark. Nice job! (2 Replies)
Discussion started by: PxT
2 Replies

2. Solaris

ultra enterprise 3000

I have been trying to install a few different distributions on this server, i have 1 sparc 250 mhz, 512 ram, it has a scsi with the built in ethernet, ive tried debian, bsd, with no luck, i can gentoo live cd to run and work with the ethernet, but i would like a normal distro, anywaysi have solaris... (4 Replies)
Discussion started by: hahjoel
4 Replies

3. Hardware

Sun Enterprise 3000

I got a coffee table(enterprise 3000) for free from a friend a couple of months ago, and I'm trying to convince it to boot. List of cards 1x Clock Board 1x I/O board 2x CPU Boards 1x SCSI board? It has 2 SCSI headers on it anyway In addition, its HDD rack is almost full of 18GB drives.... (3 Replies)
Discussion started by: dpeterson309
3 Replies

4. What is on Your Mind?

RudiC reaches over 4000 thanks in 6 years.

Congratulations. Nice one RudiC. That is some going, well done! Bazza. (8 Replies)
Discussion started by: wisecracker
8 Replies

5. What is on Your Mind?

Congratulations RudiC for completing 4000+ THANKS in forums.

Hello All forum members, I would like to take this opportunity to THANK RudiC for his tremendous achievement, guidance, help for helping in forums, let us join our hands together for his GREAT achievement :b: @Rudi sir, How are you sir? you ROCK, please keep up the great work sir :b: ... (1 Reply)
Discussion started by: RavinderSingh13
1 Replies

6. What is on Your Mind?

The Order of the Wizard's Hat - Lifetime Achievement Award 2019 - Congrats to RudiC

Please join me in congratulating RudiC for his long overdue lifetime achievement award badge from UNIX.COM in computer wizardry: "The Order of the Wizard's Hat - Lifetime Achievement Award" This "Order of the Wizard's Hat" is presented to RudiC for Computer Wizardry in the UNIX Operating... (10 Replies)
Discussion started by: Neo
10 Replies

7. What is on Your Mind?

Congratulations RudiC for completing 4500 THANKS in forums.

Hello All, I would like to take this opportunity to CONGRATULATE RudiC sir, (on behalf of all of us); please join your hands with me for congratulating RudiC sir for completing 4500 THANKS in forums. He is a GREAT ASSET in this forums and from years and years he is giving NICE, QUICK, Innovative... (8 Replies)
Discussion started by: RavinderSingh13
8 Replies
EvmConnection(5)						File Formats Manual						  EvmConnection(5)

NAME
EvmConnection - connection to the EVM (Event Management) daemon DESCRIPTION
An EVM connection is the context through which data is passed to and from the EVM daemon. A connection has the following attributes: o Connection Type o Response Mode o Transport Type o Callback, and associated Callback Argument o Connection Context These attributes are described in the following sections. An EVM client is any program that processes events through the EVM daemon. EVM supports three distinct types of client: posting clients, subscribing (listening) clients, and service clients. Regardless of type, all clients connect to the EVM daemon in the same way. Connection Type The type of connection established determines the client type. There are associated constants to be used when the connection is created. The client uses this connection to post events to the daemon for distribution. The client uses this connection to listen for events distributed by the daemon. The client uses this connection to request that the daemon provide a service, such as retrieve events from a log. A client may use all three types of connection, but must establish each connection separately. Response Mode The response mode associated with a connection determines the manner in which certain API functions will deal with the daemon's responses to request messages. See the EvmConnCreate(3) reference page for full details of each mode. The modes are: The API functions will return as soon as the request has been sent to the daemon, and the caller will not receive the daemon's response. The API functions will send the request to the daemon, and wait until a response has been received before returning to the caller. The returned status code will reflect the response. The API functions will return as soon as the request has been sent to the daemon, and the caller must monitor the connection for a response. When the response is received, the connection's callback function will be invoked to handle it. Transport Type The transport type specifies the type of connection to be made to the daemon. The only valid connection that can be made is: Connection is through a domain socket to a daemon running on the local host. Callback This attribute specifies the function you want to handle any incoming responses resulting from activity on the connection. Callbacks are discussed in more detail in the EvmCallback(5) reference page. This attribute is valid only when the Response Mode is Connection Context This attribute is a handle to a connection returned when a connection is created. You must pass this handle to all other functions you call which need to access the connection. Connection Monitoring Once you have established a connection, the API functions will take care of all communication activity with the daemon. However, you must make sure that these functions get an opportunity to do their work when activity occurs. EVM provides several ways for you to do this. The method you choose depends on the model of your program. o If your program is I/O driven, waiting for I/O to occur on one or more file descriptors, handling activity as it occurs and then return- ing to wait for more I/O, it probably spends most of its time in a call. In this case, you should use to establish which file descrip- tor the EVM connection is using, and then include that file descriptor in your read mask. When you detect activity on the connection, invoke to handle the activity. o If your program is driven purely by activity on a single EVM connection, you can let the API handle the I/O entirely by using to wait for activity to occur on the connection. When the function returns, dispatch the I/O using and then return to o If your program is driven in some other way, and there are certain points (for example, at the end of some control loop) at which you want to handle EVM activity, you can call to check for any outstanding activity. If this function indicates that there is something to do, you can call otherwise you can continue immediately with normal processing. Destroying a Connection When you are finished with the connection, use to disconnect from the daemon. It is important to check the return status for any failure each time you call a connection function and destroy the connection if a failure occurred. The file descriptor associated with the connec- tion remains open until you destroy the connection even if I/O errors have been detected on the connection. SEE ALSO
Functions select(2). Routines EvmConnControl(3), EvmConnCreate(3), EvmConnFdGet(3), EvmConnCheck(3), EvmConnWait(3), EvmConnDispatch(3), EvmConnDestroy(3). Event Management EVM(5). Event Callback EvmCallback(5). EVM Events EvmEvent(5). EvmConnection(5)
All times are GMT -4. The time now is 04:13 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy