IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Can u plz tel me how psuedo exit takes place


IBM Mainframe Forums -> CICS
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
manjunathabn

New User


Joined: 07 Nov 2005
Posts: 2
Location: Mysore

PostPosted: Mon Nov 07, 2005 3:11 pm
Reply with quote

Hi all,
Can anybody tel me how psuedo conversation takes place in detail...
Back to top
View user's profile Send private message
SHIVAREDDY

New User


Joined: 25 Jul 2005
Posts: 20

PostPosted: Wed Nov 09, 2005 4:09 pm
Reply with quote

Hi manjunathan,

Hope the below documentation helps you.Its simple and straight.
Conversational Modes
Terminal Conversation takes place in 2 ways.
Conversational:
A mode of dialogue between program and terminal based on a combination of sending message and receiving message within the same task.
Since human response is slower than the CPU speed, a significant amount of resource will be wasted just waiting .
Pseudo-Conversational.
A mode of dialogue between program and terminal which appears to the operator as a continuous conversation but which is actually carried by a series of tasks
Multitasking CICS allows multiple transactions (tasks) to
execute at the same time
Multithreading CICS allows multiple concurrent tasks to share
the same program
Re-entrant Programs running under CICS do not change themselves so that they can continue from where they left off after an interruption
Conversational Transaction ? Example
PROCEDURE DIVISION.
FIRST-PROCESS.
EXEC CICS RECEIVE ---- <= TSK1, 12345
END-EXEC.
: Process
EXEC CICS SEND ----- <= EMP(12345) Details
END-EXEC.
* - - - - - - Program Waits For Response - - - - -
SECOND PROCESS.
EXEC CICS RECEIVE ----- <= User Enters Data
END-EXEC.
: Process
Pseudo-Conversational ?Example
Transaction TSK1
Program PROG1
PROCEDURE DIVISION.
:
EXEC CICS RECEIVE
END-EXEC.
:
EXEC CICS SEND
END-EXEC.
EXEC CICS RETURN
TRANSID (?TSK2?)
END-EXEC.


CHEERS icon_biggrin.gif
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> CICS

 


Similar Topics
Topic Forum Replies
No new posts Use of Perform Thru Exit COBOL Programming 6
No new posts user exit in IBM Infosphere Optim DB2 8
No new posts ACS exit routine JCL & VSAM 0
No new posts Research regarding csqcapx exit CICS 0
No new posts ISPF END or EXIT in Rexx CLIST & REXX 13
Search our Forums:

Back to Top