473,386 Members | 1,712 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

mindless: Do you have a good name for a class that...?

Do you have a good name for a class that is both routes and transforms
a message?

Somehow transouter or routformer doesnt jive, and a most things that
route,send, direct don't also transform, and things that convert or
change don't also route?

Any ideas? Trying to avoid two words as well. Should have taken more
English classes along with Comp Sci :-)
Nov 13 '05 #1
11 1509

"Tim Smith" <ti*******@hotmail.com> wrote in message
news:a7**************************@posting.google.c om...
Do you have a good name for a class that is both routes and transforms
a message?

Somehow transouter or routformer doesnt jive, and a most things that
route,send, direct don't also transform, and things that convert or
change don't also route?

Any ideas? Trying to avoid two words as well. Should have taken more
English classes along with Comp Sci :-)


How about "Dispatcher"? IMO implies dispatch to either/or/and a
'transformation' or 'target' procedure.

-Mike
Nov 13 '05 #2
Tim Smith wrote:
Do you have a good name for a class that is both routes and transforms
a message?

Somehow transouter or routformer doesnt jive, and a most things that
route,send, direct don't also transform, and things that convert or
change don't also route?

Any ideas? Trying to avoid two words as well. Should have taken more
English classes along with Comp Sci :-)


forout or for those from the 70's farout??

Ian

Nov 13 '05 #3


Tim Smith wrote:
Do you have a good name for a class that is both routes and transforms
a message?


Yes, non-cohesive ;-). But this is OT for comp.lang.c anyway...

Ed.

Nov 13 '05 #4
nos
how about RAT route and transform
"Mike Wahler" <mk******@mkwahler.net> wrote in message
news:Pu***************@newsread1.news.pas.earthlin k.net...

"Tim Smith" <ti*******@hotmail.com> wrote in message
news:a7**************************@posting.google.c om...
Do you have a good name for a class that is both routes and transforms
a message?

Somehow transouter or routformer doesnt jive, and a most things that
route,send, direct don't also transform, and things that convert or
change don't also route?

Any ideas? Trying to avoid two words as well. Should have taken more
English classes along with Comp Sci :-)


How about "Dispatcher"? IMO implies dispatch to either/or/and a
'transformation' or 'target' procedure.

-Mike

Nov 13 '05 #5
Tim Smith wrote:
Do you have a good name for a class that is both routes and transforms
a message?

Somehow transouter or routformer doesnt jive, and a most things that
route,send, direct don't also transform, and things that convert or
change don't also route?

Any ideas? Trying to avoid two words as well. Should have taken more
English classes along with Comp Sci :-)


Perhaps the fact that you can't think of a good name indicates that you
are trying to put too much functionality in one class. What about
separating the functionality into two classes, one for routing and one
for transforming?

Ray

Nov 13 '05 #6
Raymond DeCampo writes:
Tim Smith wrote:
Do you have a good name for a class that is both routes and transforms
a message?

Somehow transouter or routformer doesnt jive, and a most things that
route,send, direct don't also transform, and things that convert or
change don't also route?

Any ideas? Trying to avoid two words as well. Should have taken more
English classes along with Comp Sci :-)


Perhaps the fact that you can't think of a good name indicates that you
are trying to put too much functionality in one class. What about
separating the functionality into two classes, one for routing and one
for transforming?


Yeah, that's the ticket. Too darn bad those guys that came up with that
new-fangled vacuum tube didn't realize that; intead they came up with a
doofus name for their gadget. .
Nov 13 '05 #7
On 5 Dec 2003 14:10:12 -0800, ti*******@hotmail.com (Tim Smith) wrote
in comp.lang.c:
Do you have a good name for a class that is both routes and transforms
a message?

Somehow transouter or routformer doesnt jive, and a most things that
route,send, direct don't also transform, and things that convert or
change don't also route?

Any ideas? Trying to avoid two words as well. Should have taken more
English classes along with Comp Sci :-)


C doesn't have classes. Kindly don't post questions about them to
comp.lang.c.

--
Jack Klein
Home: http://JK-Technology.Com
FAQs for
comp.lang.c http://www.eskimo.com/~scs/C-faq/top.html
comp.lang.c++ http://www.parashift.com/c++-faq-lite/
alt.comp.lang.learn.c-c++ ftp://snurse-l.org/pub/acllc-c++/faq
Nov 13 '05 #8
C doesn't have classes. Kindly don't post questions about them to
comp.lang.c.


C doesn't have classes. But that doesn't preclude OO programming in c.
Bruce.

Nov 13 '05 #9
ti*******@hotmail.com (Tim Smith) wrote in
news:a7**************************@posting.google.c om on Fri 05 Dec 2003
03:10:12p:
Do you have a good name for a class that is both routes and transforms
a message?


Yes. Off-topic here.

Nov 13 '05 #10
Bruce Percy <no****@nospam.com> wrote in
news:pa****************************@nospam.com on Fri 05 Dec 2003
09:35:11p:
C doesn't have classes. Kindly don't post questions about them to
comp.lang.c.


C doesn't have classes. But that doesn't preclude OO programming in c.
Bruce.


While you can do OO in C through some rather clever constructs (hell, I've
got some packages to prove it), most people talking about classes for C-
like languages are usually talking about C++ or Objective-C.

Or they're talking about Java, in which case their definition of C-like
needs to be tweaked a bit. ;)

Nov 13 '05 #11
On Sat, 06 Dec 2003 14:35:11 +1000, Bruce Percy <no****@nospam.com>
wrote:
C doesn't have classes. Kindly don't post questions about them to
comp.lang.c.


C doesn't have classes. But that doesn't preclude OO programming in c.
Bruce.


Considering the cross-post list, I'd say it's unlikely that the OP
intended to be topical in c.l.c.

--
Al Balmer
Balmer Consulting
re************************@att.net
Nov 13 '05 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: N.K. | last post by:
Hello, I'm trying to find a way to flexibly filter a column in a row of data read from a file. I will have data type of that column, the operation to be performed on it (like >, <, <= etc.) and the...
7
by: Tim Smith | last post by:
Do you have a good name for a class that is both routes and transforms a message? Somehow transouter or routformer doesnt jive, and a most things that route,send, direct don't also transform,...
28
by: David MacQuigg | last post by:
I'm concerned that with all the focus on obj$func binding, &closures, and other not-so-pretty details of Prothon, that we are missing what is really good - the simplification of classes. There are...
9
by: Rick Cook | last post by:
I would like to do a response form on one of my sites instead of posting an e-mail address for spammers. I've taken a couple of examples from sites, but the code looks clunky and non-conformant to...
12
by: Steve W. | last post by:
I just read the section (and did the exercise) in the C# Step by Step book that covers Explict Interface Implementation (where you specify in the method implementation the specific interface that...
2
by: Martin Horn | last post by:
Hi group. I have implemented a class along these lines, Public Class CustomerDetails Private fRecordString As String Public Sub New(ByVal RecordString As String) fRecordString =...
0
by: Daniel Sélen Secches | last post by:
I found a good class to do a simple FTP. Very good.... I'm posting it with the message, i hope it helps someone ============================================================== Imports...
24
by: Gaijinco | last post by:
I found one of that problems all of us have solve when they begin programming: given 3 numbers print the greater and the lesser one of the set. I was trying to remember the if-then-else...
17
by: Kevin Hall | last post by:
C++ is one of my favorite languages to work in. This is because it has so many differrent strengths. But there is also a number of blemishes in the language -- some could potentially be fixed,...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.