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.

Strings.ts 1004B

1234567891011121314151617
  1. export const USER_DEFINED_TIMEOUT = ms => `User defined socket timout after ${ms}ms`
  2. export const SOCKET_NOT_CONNECTED = "The socket is not connected! Use socket.connect() first"
  3. export const UNKNOWN_RPC_IDENTIFIER = "$UNKNOWNRPC$"
  4. export const UNKNOWN_RPC_SERVER = name => `Unknown RPC ${name}`
  5. export const RPC_BAD_TYPE = type => `Bad socketIORPC type ${type}`
  6. export const CALL_NOT_FOUND = callName => `Call not found: ${callName}. ; Zone: <root> ; Task: Promise.then ; Value: Error: Call not found: ${callName}`
  7. export const BAD_CONFIG_PARAM = "RPCServer options were passed to listen(..) after attach(..) was called. Please pass them to attach(..) instead. Ignoring."
  8. export const RPC_NO_NAME = name => `
  9. RPC did not provide a name.
  10. \nUse 'funtion name(..){ .. }' syntax instead.
  11. \n
  12. \n<------------OFFENDING RPC:
  13. \n${name}
  14. \n>------------OFFENDING RPC`
  15. export const CLASSNAME_ATTRIBUTE = "$__CLASSNAME__$"
  16. export const DESTROY_PREFIX = "$__DESTROY__$_"
  17. export const CALLBACK_NAME = "$__CALLBACK__$"