You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
146 lines
6.4 KiB
146 lines
6.4 KiB
'\" t
|
|
.TH TQNetworkOperation 3qt "2 February 2007" "Trolltech AS" \" -*- nroff -*-
|
|
.\" Copyright 1992-2007 Trolltech ASA. All rights reserved. See the
|
|
.\" license file included in the distribution for a complete license
|
|
.\" statement.
|
|
.\"
|
|
.ad l
|
|
.nh
|
|
.SH NAME
|
|
TQNetworkOperation \- Common operations for network protocols
|
|
.SH SYNOPSIS
|
|
\fC#include <tqnetworkprotocol.h>\fR
|
|
.PP
|
|
Inherits TQObject.
|
|
.PP
|
|
.SS "Public Members"
|
|
.in +1c
|
|
.ti -1c
|
|
.BI "\fBTQNetworkOperation\fR ( TQNetworkProtocol::Operation operation, const TQString & arg0, const TQString & arg1, const TQString & arg2 )"
|
|
.br
|
|
.ti -1c
|
|
.BI "\fBTQNetworkOperation\fR ( TQNetworkProtocol::Operation operation, const TQByteArray & arg0, const TQByteArray & arg1, const TQByteArray & arg2 )"
|
|
.br
|
|
.ti -1c
|
|
.BI "\fB~TQNetworkOperation\fR ()"
|
|
.br
|
|
.ti -1c
|
|
.BI "void \fBsetState\fR ( TQNetworkProtocol::State state )"
|
|
.br
|
|
.ti -1c
|
|
.BI "void \fBsetProtocolDetail\fR ( const TQString & detail )"
|
|
.br
|
|
.ti -1c
|
|
.BI "void \fBsetErrorCode\fR ( int ec )"
|
|
.br
|
|
.ti -1c
|
|
.BI "void \fBsetArg\fR ( int num, const TQString & arg )"
|
|
.br
|
|
.ti -1c
|
|
.BI "void \fBsetRawArg\fR ( int num, const TQByteArray & arg )"
|
|
.br
|
|
.ti -1c
|
|
.BI "TQNetworkProtocol::Operation \fBoperation\fR () const"
|
|
.br
|
|
.ti -1c
|
|
.BI "TQNetworkProtocol::State \fBstate\fR () const"
|
|
.br
|
|
.ti -1c
|
|
.BI "TQString \fBarg\fR ( int num ) const"
|
|
.br
|
|
.ti -1c
|
|
.BI "TQByteArray \fBrawArg\fR ( int num ) const"
|
|
.br
|
|
.ti -1c
|
|
.BI "TQString \fBprotocolDetail\fR () const"
|
|
.br
|
|
.ti -1c
|
|
.BI "int \fBerrorCode\fR () const"
|
|
.br
|
|
.ti -1c
|
|
.BI "void \fBfree\fR ()"
|
|
.br
|
|
.in -1c
|
|
.SH DESCRIPTION
|
|
The TQNetworkOperation class provides common operations for network protocols.
|
|
.PP
|
|
An object is created to describe the operation and the current state for each operation that a network protocol should process.
|
|
.PP
|
|
For a detailed description of the TQt Network Architecture and how to implement and use network protocols in Qt, see the TQt Network Documentation.
|
|
.PP
|
|
See also TQNetworkProtocol and Input/Output and Networking.
|
|
.SH MEMBER FUNCTION DOCUMENTATION
|
|
.SH "TQNetworkOperation::TQNetworkOperation ( TQNetworkProtocol::Operation operation, const TQString & arg0, const TQString & arg1, const TQString & arg2 )"
|
|
Constructs a network operation object. \fIoperation\fR is the type of the operation, and \fIarg0\fR, \fIarg1\fR and \fIarg2\fR are the first three arguments of the operation. The state is initialized to TQNetworkProtocol::StWaiting.
|
|
.PP
|
|
See also TQNetworkProtocol::Operation and TQNetworkProtocol::State.
|
|
.SH "TQNetworkOperation::TQNetworkOperation ( TQNetworkProtocol::Operation operation, const TQByteArray & arg0, const TQByteArray & arg1, const TQByteArray & arg2 )"
|
|
Constructs a network operation object. \fIoperation\fR is the type of the operation, and \fIarg0\fR, \fIarg1\fR and \fIarg2\fR are the first three raw data arguments of the operation. The state is initialized to TQNetworkProtocol::StWaiting.
|
|
.PP
|
|
See also TQNetworkProtocol::Operation and TQNetworkProtocol::State.
|
|
.SH "TQNetworkOperation::~TQNetworkOperation ()"
|
|
Destructor.
|
|
.SH "TQString TQNetworkOperation::arg ( int num ) const"
|
|
Returns the operation's \fInum\fR-th argument. If this argument was not already set, an empty string is returned.
|
|
.PP
|
|
Example: network/networkprotocol/nntp.cpp.
|
|
.SH "int TQNetworkOperation::errorCode () const"
|
|
Returns the error code for the last error that occurred.
|
|
.SH "void TQNetworkOperation::free ()"
|
|
Sets this object to delete itself when it hasn't been used for one second.
|
|
.PP
|
|
Because TQNetworkOperation pointers are passed around a lot the TQNetworkProtocol generally does not have enough knowledge to delete these at the correct time. If a TQNetworkProtocol doesn't need an operation any more it will call this function instead.
|
|
.PP
|
|
Note: you should never need to call the method yourself.
|
|
.SH "TQNetworkProtocol::Operation TQNetworkOperation::operation () const"
|
|
Returns the type of the operation.
|
|
.SH "TQString TQNetworkOperation::protocolDetail () const"
|
|
Returns a detailed error message for the last error. This must have been set using setProtocolDetail().
|
|
.SH "TQByteArray TQNetworkOperation::rawArg ( int num ) const"
|
|
Returns the operation's \fInum\fR-th raw data argument. If this argument was not already set, an empty bytearray is returned.
|
|
.SH "void TQNetworkOperation::setArg ( int num, const TQString & arg )"
|
|
Sets the network operation's \fInum\fR-th argument to \fIarg\fR.
|
|
.SH "void TQNetworkOperation::setErrorCode ( int ec )"
|
|
Sets the error code to \fIec\fR.
|
|
.PP
|
|
If the operation failed, the protocol should set an error code to describe the error in more detail. If possible, one of the error codes defined in TQNetworkProtocol should be used.
|
|
.PP
|
|
See also setProtocolDetail() and TQNetworkProtocol::Error.
|
|
.SH "void TQNetworkOperation::setProtocolDetail ( const TQString & detail )"
|
|
If the operation failed, the error message can be specified as \fIdetail\fR.
|
|
.SH "void TQNetworkOperation::setRawArg ( int num, const TQByteArray & arg )"
|
|
Sets the network operation's \fInum\fR-th raw data argument to \fIarg\fR.
|
|
.SH "void TQNetworkOperation::setState ( TQNetworkProtocol::State state )"
|
|
Sets the \fIstate\fR of the operation object. This should be done by the network protocol during processing; at the end it should be set to TQNetworkProtocol::StDone or TQNetworkProtocol::StFailed, depending on success or failure.
|
|
.PP
|
|
See also TQNetworkProtocol::State.
|
|
.SH "TQNetworkProtocol::State TQNetworkOperation::state () const"
|
|
Returns the state of the operation. You can determine whether an
|
|
operation is still waiting to be processed, is being processed,
|
|
has been processed successfully, or failed.
|
|
|
|
.SH "SEE ALSO"
|
|
.BR http://doc.trolltech.com/tqnetworkoperation.html
|
|
.BR http://www.trolltech.com/faq/tech.html
|
|
.SH COPYRIGHT
|
|
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
|
|
license file included in the distribution for a complete license
|
|
statement.
|
|
.SH AUTHOR
|
|
Generated automatically from the source code.
|
|
.SH BUGS
|
|
If you find a bug in Qt, please report it as described in
|
|
.BR http://doc.trolltech.com/bughowto.html .
|
|
Good bug reports help us to help you. Thank you.
|
|
.P
|
|
The definitive TQt documentation is provided in HTML format; it is
|
|
located at $TQTDIR/doc/html and can be read using TQt Assistant or with
|
|
a web browser. This man page is provided as a convenience for those
|
|
users who prefer man pages, although this format is not officially
|
|
supported by Trolltech.
|
|
.P
|
|
If you find errors in this manual page, please report them to
|
|
.BR qt-bugs@trolltech.com .
|
|
Please include the name of the manual page (tqnetworkoperation.3qt) and the Qt
|
|
version (3.3.8).
|