#Signal vs Networks?

1 messages · Page 1 of 1 (latest)

past raven
#

https://sleitnick.github.io/RbxUtil/api/Signal/
https://sleitnick.github.io/RbxUtil/api/Net/

If anyone has used these before please educate me rq, cause what is the difference between these two utils?
Like is Signal just Net but local? Whats the point of having a signal event for just local thigns inside a script?

A Signal is a data structure that allows events to be dispatched
and observed.

This implementation is a direct copy of the de facto standard, GoodSignal,
with some added methods and typings.

For example:

local signal = Signal.new()

-- Subscrib...

Basic networking module for creating and handling static
RemoteEvents and RemoteFunctions.

viscid gateBOT
#

studio** You are now Level 1! **studio

cobalt ocean
#

probably one of them is bindableevent the other is remoteevent

hushed nacelle
hushed nacelle
#

Network appears to be a way to get and connect to RemoteFunctions without needing to worry if they were create yet, so like you don't have to find every RemoteEvent separately.

That kinda feels open to bugs if you mismatch the names of your events though

past raven
hushed nacelle
past raven