67 #include "utility/actor/channel/TCP_UDP_Socket_base.h"    79     char *shadow_inetAddr;
    80     unsigned int shadow_port;
    82     virtual void checkForEndiannessProblem(
void);
    85     UDP_Socket(
unsigned int port, 
bool checkEndianness = 
false);   
    86     UDP_Socket(
unsigned int other_Port, 
char *other_InetAddr, 
bool checkEndianness = 
false);  
    90     virtual int setUpConnection(
void);
 Float vector abstraction. 
Definition: Vector.h:94
std::string addToProgram(void)
When creating remote actors the channels created in the actor space need to know how to contact the s...
Definition: UDP_Socket.cpp:710
Object that can move between processes. 
Definition: MovableObject.h:100
int sendMsg(int dbTag, int commitTag, const Message &, ChannelAddress *theAddress=0)
A method invoked to send the data in the Message object theMsg to another Channel object...
Definition: UDP_Socket.cpp:362
FEM_ObjectBroker is is an object broker class for the finite element method. 
Definition: FEM_ObjectBroker.h:151
Vector of integers. 
Definition: ID.h:95
int recvMatrix(int dbTag, int commitTag, Matrix &, ChannelAddress *theAddress=0)
Invoked to receive the data in the Matrix object theMatrix to another Channel object. 
Definition: UDP_Socket.cpp:410
int recvObj(int commitTag, MovableObject &, FEM_ObjectBroker &, ChannelAddress *theAddress=0)
Receive the object a través de éste canal. 
Definition: UDP_Socket.cpp:273
int sendMatrix(int dbTag, int commitTag, const Matrix &, ChannelAddress *theAddress=0)
Invoked to receive the data in the Matrix object theMatrix to another Channel object. 
Definition: UDP_Socket.cpp:464
int sendVector(int dbTag, int commitTag, const Vector &, ChannelAddress *theAddress=0)
Invoked to receive the data in the Vector object theVector to another Channel object. 
Definition: UDP_Socket.cpp:565
int recvMsg(int dbTag, int commitTag, Message &, ChannelAddress *theAddress=0)
Invoked to send the data in the Message object theMsg to another Channel object. 
Definition: UDP_Socket.cpp:310
int sendID(int dbTag, int commitTag, const ID &, ChannelAddress *theAddress=0)
Invoked to receive the data in the ID object theID to another Channel object. 
Definition: UDP_Socket.cpp:665
int sendObj(int commitTag, MovableObject &, ChannelAddress *theAddress=0)
Send the object a través de éste canal. 
Definition: UDP_Socket.cpp:245
Message between processes. 
Definition: Message.h:77
Open source finite element program for structural analysis. 
Definition: ContinuaReprComponent.h:35
Base class for classes that encapsulate channel addresses. 
Definition: ChannelAddress.h:78
Matrix of floats. 
Definition: Matrix.h:111
int recvVector(int dbTag, int commitTag, Vector &, ChannelAddress *theAddress=0)
Invoked to receive the data in the Vector object theVector to another Channel object. 
Definition: UDP_Socket.cpp:512
int recvID(int dbTag, int commitTag, ID &, ChannelAddress *theAddress=0)
Invoked to receive the data in the ID object theID to another Channel object. 
Definition: UDP_Socket.cpp:613
DP_Socket is a sub-class of channel. 
Definition: UDP_Socket.h:76
TCP_UDP_Socket_base is a sub-class of channel. 
Definition: TCP_UDP_Socket_base.h:40
int setNextAddress(const ChannelAddress &otherChannelAddress)
A method invoked to set specify the next address that the next messages to be sent if {sendMessage()}...
Definition: UDP_Socket.cpp:223