]> git.mxchange.org Git - hub.git/blobdiff - application/hub/interfaces/package/class_Receivable.php
Renamed methods (MAY BREAK THINGS)
[hub.git] / application / hub / interfaces / package / class_Receivable.php
index 0a6dcb384b65bf9f7255c2b64311bccbf8006021..821c8178e299757cbf60c9149c7a9926a93fe280 100644 (file)
@@ -37,14 +37,14 @@ interface Receivable extends FrameworkInterface {
         *
         * @return      void
         */
-       function handleIncomingDecodedData ();
+       function handleIncomingRawData ();
 
        /**
         * Checks whether incoming decoded data is handled.
         *
         * @return      $isHandled      Whether incoming decoded data is handled
         */
-       function isIncomingDecodedDataHandled ();
+       function isIncomingRawDataHandled ();
 
        /**
         * Assembles incoming decoded data so it will become an abstract network
@@ -52,7 +52,7 @@ interface Receivable extends FrameworkInterface {
         *
         * @return      void
         */
-       function assembleDecodedDataToPackage ();
+       function assembleRawDataToPackage ();
 
        /**
         * Checks whether a new message has arrived
@@ -88,7 +88,7 @@ interface Receivable extends FrameworkInterface {
         * @param       $handlerInstance        An instance of a Networkable class
         * @return      void
         */
-       function addDecodedDataToIncomingStack (Networkable $handlerInstance);
+       function addRawDataToIncomingStack (Networkable $handlerInstance);
 
        /**
         * "Decode" the package content. This method does also verify the attached hash
@@ -120,7 +120,7 @@ interface Receivable extends FrameworkInterface {
         * @param       $decodedData    An array with decoded raw package data
         * @return      void
         */
-       function handleDecodedData (array $decodedData);
+       function handleRawData (array $decodedData);
 }
 
 // [EOF]