mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-23 08:52:31 +02:00
Typo fix in UDPHandler.h (#4111)
This commit is contained in:
parent
9a734674ed
commit
1c6e5aa614
@ -311,7 +311,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
virtual void processData(char*)
|
virtual void processData(char*)
|
||||||
/// Caled when data is received by reader.
|
/// Called when data is received by reader.
|
||||||
///
|
///
|
||||||
/// No-op here, must be overridden by inheriting
|
/// No-op here, must be overridden by inheriting
|
||||||
/// class in order to do useful work.
|
/// class in order to do useful work.
|
||||||
@ -319,7 +319,7 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
virtual void processError(char* buf)
|
virtual void processError(char* buf)
|
||||||
/// Caled when error is detected by reader.
|
/// Called when error is detected by reader.
|
||||||
///
|
///
|
||||||
/// Only functional if stream pointer is provided
|
/// Only functional if stream pointer is provided
|
||||||
/// to the handler, otherwise it must be overridden
|
/// to the handler, otherwise it must be overridden
|
||||||
@ -330,7 +330,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
void start()
|
void start()
|
||||||
/// Stars the handler run in thread.
|
/// Starts the handler run in thread.
|
||||||
{
|
{
|
||||||
_thread.start(*this);
|
_thread.start(*this);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user